Difference between revisions of "Package:Eix"

From Funtoo
Jump to navigation Jump to search
(moved over examples from kernel page - danielv)
(removed extra "#" signs from my edit - danielv)
Line 29: Line 29:
To see a brief listing of available kernels,  do this command<br/>
To see a brief listing of available kernels,  do this command<br/>
<console>
<console>
###i## # eix -# sys-kernel/
##i## # eix -# sys-kernel/
</console>
</console>


or for more detail<br/>
or for more detail<br/>
<console>
<console>
###i## # eix -c sys-kernel/
##i## # eix -c sys-kernel/
</console>
</console>


Let's say you want to look at sys-kernel/genkernel<br/>
Let's say you want to look at sys-kernel/genkernel<br/>
<console>
<console>
###i## # eix sys-kernel/genkernel/
##i## # eix sys-kernel/genkernel/
</console>
</console>



Revision as of 18:58, June 29, 2015

Eix

   Tip

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.

To see a brief listing of available kernels, do this command

root ##i## # eix -# sys-kernel/

or for more detail

root ##i## # eix -c sys-kernel/

Let's say you want to look at sys-kernel/genkernel

root ##i## # eix sys-kernel/genkernel/


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 foo  
This 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.