The Funtoo Linux project has transitioned to "Hobby Mode" and this wiki is now read-only.
Package:Eix
Eix
We welcome improvements to this page. To edit this page, Create a Funtoo account. Then log in and then click here to edit this page. See our editing guidelines to becoming a wiki-editing pro.
Install
Emerge
To install eix, emerge it:
root # emerge eix
Update
To include your layman repositories for synchronization:
root # echo "*" >> /etc/eix-sync.conf
Update eix by running:
root # eix-update
Use
The basic usage of eix is simply using its name as a prefix to the package you are looking for:
root # eix foo
This will give you a fairly verbose list of packages containing the term 'foo' in their name. It gives you information about which versions are available, whether they are stable, current or live, a description of the package and a list of the USE flags for all the packages combined - sometimes different versions of packages have different USE flags so you may need to check which a specific package contains with equery.
Showing what you have installed
A handy feature of eix is the ability to quickly show you which packages you have installed on your system.
root # eix-installed all
This will output all the packages you have explicitly installed along with the version number. There are other options to get more specific information with this command so check the man page for details.
This can be handy for when you do backups of your system, the list could be sent to a file before you run rsync:
root # eix-installed all > ~/installed_list.txt
Searching other overlays
It is possible search in more than just the main portage tree and your local overlay. By using the eix-remote
command you can configure eix to load, update and search multiple external overlays.
To add the list of external overlays to eix:
root # eix-remote update root # eix-sync
Now you are ready to search for packages inside the main funtoo portage tree and in all the third party overlays by using the -R
option:
root # eix -R fooThis is will give you a list of all the packages and versions, as well as telling you which overlay they belong to. Once you have found something you want to emerge you can add the overlay, with either
root # layman -a [overlay_name]or by using
eix-layman
, and then just emerge the package in the normal way.