How to print a list of all upgradeable packages in Gentoo

emergegentoopackage-managementsoftware-updates

doing

  emerge -avuDN --with-bdeps y --keep-going @world

takes a whole lot of time and often fails.

Is there a way to print a list of all upgrade-able packages in a Gentoo system?

Best Answer

eix is your best option for this.

eix --installed --upgrade will print all installed packages where the best version is not the present version (for each slot).

Does come at the cost that you need to keep the eix database up to date after each sync.

Related Question