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 1Kf8rr-0001sL-Gp for garchives@archives.gentoo.org; Mon, 15 Sep 2008 07:51:31 +0000 Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id E7A4CE04A9; Mon, 15 Sep 2008 07:51:27 +0000 (UTC) Received: from smtp.energoprojekt.pl (smtp.energoprojekt.pl [213.25.35.134]) by pigeon.gentoo.org (Postfix) with ESMTP id B1F51E04A9 for ; Mon, 15 Sep 2008 07:51:27 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=lutel.pl; h= content-type:mime-version:message-id:date:subject:from: x-virus-scanned; s=key; t=1221465082; bh=nCr+Izy9gPIb92y5+1Ex00r Qt3IkVICWnOQJBIkBilw=; b=vgpbU9TytwgutXtCS5D/40MMpDpubgjgSIM+G8e PW7x8An8W1mBew4opP+53u/3ri2ZUtHmdePA6Hhr+vS//c7HLD2ilrSz36n6rspH LzMBeX3E3btnlJ32xaNE6v+t2dm9f4xHIOJM20QKxoFn3e3ThXgqtQmFs0YSAm95 WtQ4= X-Virus-Scanned: amavisd-new at energoprojekt.pl From: "Tomasz Lutelmowski" To: gentoo-server@lists.gentoo.org Subject: [gentoo-server] small tip how to really "emerge world" Date: Mon, 15 Sep 2008 09:51:22 +0200 Message-Id: <20080915074256.M48398@lutel.pl> X-OriginatingIP: 85.222.9.113 (tomek@lutel.pl) 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=iso-8859-2 X-Archives-Salt: db7fc971-0a31-4a3f-8be4-979216e4ee43 X-Archives-Hash: b10dcfb66564d8cc6c37f6891ddb3d3f 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 Regards, Tomek