Gentoo Tools
Gentoo is know as a hard linux distribution, in fact, only the installation is a hard process, everything else is just a piece of cake.
Ok, it’s not easy as ubuntu, but with the right tools, everyone can make magic.
IMHO, no one can have all Gentoo experience without:
- equery (useful when you need information, as USE flags, depends, package contents, etc)
- eix ( excellent search packages program )
- euse (USE flags )
- revdep-rebuild (after an emerge -NDuav world, to fix broken packages)
- module-rebuild rebuild -X ( after an kernel update, rebuild old modules to fit with your new kernel)
Equery, euse and revdep-rebuild are part of gentoolkit ( emerge gentoolkit), eix and module-rebuild have their own package.
And, of course, vim for everything else
2 Comments
using zenity with emerge
Zenity is a great tool, it creates a gtk dialog box using shell commands.
The following line shows how you can make a emerge without worry waiting for a terminal response.
emerge -NDupv world >/tmp/newpackage && zenity --text-info --filename=/tmp/newpackage && zenity --question --text="emerge?" && emerge -NDuv world