From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from pigeon.gentoo.org ([69.77.167.62] helo=lists.gentoo.org) by finch.gentoo.org with esmtp (Exim 4.60) (envelope-from ) id 1KfFCh-0006ne-3S for garchives@archives.gentoo.org; Mon, 15 Sep 2008 14:37:27 +0000 Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 9D4C8E06B2; Mon, 15 Sep 2008 14:36:42 +0000 (UTC) Received: from moutng.kundenserver.de (moutng.kundenserver.de [212.227.126.188]) by pigeon.gentoo.org (Postfix) with ESMTP id 57406E06B2 for ; Mon, 15 Sep 2008 14:36:42 +0000 (UTC) Received: from sheridan (dslb-082-083-043-217.pools.arcor-ip.net [82.83.43.217]) by mrelayeu.kundenserver.de (node=mrelayeu8) with ESMTP (Nemesis) id 0ML31I-1KfFBw3Tm2-0001Nd; Mon, 15 Sep 2008 16:36:41 +0200 Date: Mon, 15 Sep 2008 16:35:11 +0200 From: Marius Mauch To: gentoo-server@lists.gentoo.org Subject: Re: [gentoo-server] small tip how to really "emerge world" Message-Id: <20080915163511.dc927049.genone@gentoo.org> In-Reply-To: <20080915074256.M48398@lutel.pl> References: <20080915074256.M48398@lutel.pl> X-Mailer: Sylpheed 2.4.8 (GTK+ 2.10.14; i686-pc-mingw32) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-server@lists.gentoo.org Reply-to: gentoo-server@lists.gentoo.org Mime-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit X-Provags-ID: V01U2FsdGVkX1/4na46fA/7vldR/loSEHYiry6pzGqiVltYocT 0gfGqRb358h8y//+VdwEybr1EPhEd4uminNufA1tvgwd6dxoql OjyC0/+wZL+vmZuYrRL1A== X-Archives-Salt: 4a89813a-cfc1-4d4e-9dab-61813b5990fe X-Archives-Hash: 455e98295eae6a0814d5f4e04182781a On Mon, 15 Sep 2008 09:51:22 +0200 "Tomasz Lutelmowski" wrote: > Hi, > > If you want to get list of all possible updates after "emerge > --sync", > > # emerge -puDvNt world > > ...might be not enough. If it returns "0 packages" to update, try > also this (it takes very long time to finish, requires > app-portage/portage-utils) > > # for f in `qlist -IC`; do emerge -puDvNt $f | grep ebuild; done With portage-2.2 you can achieve the same (much faster) with # emerge -pvnN @installed (yes, that's really -n in the options) Marius