# References:
- https://wiki.gentoo.org/wiki/Handbook:AMD64/Installation/Stage
- https://wiki.gentoo.org/wiki/Binary_package_guide
- https://wiki.gentoo.org/wiki/Binary_package_guide/es
- https://wiki.gentoo.org/wiki/File_managers

# Generate binaries from all packages. ( By default are placed to /var/db/pkg Or set PKGDIR="/another/location" to /etc/portage/make.conf):
quickpkg "*/*"

# Another primitive option will be (need to be installed app-portage/eix):
quickpkg `eix -I | awk '/^\[/{print $2}'`

# Updating package list:
# emerge-webrsync emerge --sync # or emaint emaint --auto sync

# Upgrading all new packages:
emerge --ask --verbose --update --changed-use --deep @world

# -b flag to build binaries after compile is done. Useful for backups or installations of other machines.