Monitor DistCC from the terminal
DISTCC_DIR="/var/tmp/portage/.distcc" distccmon-text 1
Package [Gentoo] system for binary distribution
cd /var/db/pkg/; for i in */*; do quickpkg --include-config=y =$i; done
Quickpackage a [Gentoo] LiveDVD (tried with Gentoo x86 10.1 LiveDVD)
mount /dev/sda3 /mnt/gentoo
mount --bind /mnt/gentoo/usr/portage/packages/ /usr/portage/packages/
mkdir /mnt/gentoo/foo
cp -R /var/db/ /mnt/gentoo/foo/
mount --bind /mnt/gentoo/foo/db/ /var/db/
cd /var/db/pkg/
for i in */*; do quickpkg --include-config=y =$i; done
Find old/outdated entries in /etc/portage/package.*
eix -tT test
A more verbose version of the above command
eix-test-obsolete
Remove revdep-rebuild temp files
rm /root/.revdep-rebuild*.?_*
See what package is emerge-ing
qlop -c
Similar to above but with an ETA
genlop -c
List previous emerge times for a package
qlop -gH <package-name>
Calculate merge time for a package (based upon previous emerge times)
qlop -tH <package-name>
Get the name of the package that a file belongs to
qfile /filename/with/path
List files that a package owns
qlist <package-name>
List packages that depend in a given package
equery depends <package-name>
List packages that a given package depends upon for building
qdepends <package-name>