Gentoo Archives: gentoo-server

From: Marius Mauch <genone@g.o>
To: gentoo-server@l.g.o
Subject: Re: [gentoo-server] small tip how to really "emerge world"
Date: Mon, 15 Sep 2008 14:37:27
Message-Id: 20080915163511.dc927049.genone@gentoo.org
In Reply to: [gentoo-server] small tip how to really "emerge world" by Tomasz Lutelmowski
1 On Mon, 15 Sep 2008 09:51:22 +0200
2 "Tomasz Lutelmowski" <tomek@×××××.pl> wrote:
3
4 > Hi,
5 >
6 > If you want to get list of all possible updates after "emerge
7 > --sync",
8 >
9 > # emerge -puDvNt world
10 >
11 > ...might be not enough. If it returns "0 packages" to update, try
12 > also this (it takes very long time to finish, requires
13 > app-portage/portage-utils)
14 >
15 > # for f in `qlist -IC`; do emerge -puDvNt $f | grep ebuild; done
16
17 With portage-2.2 you can achieve the same (much faster) with
18 # emerge -pvnN @installed
19
20 (yes, that's really -n in the options)
21
22 Marius