I'd like to know which Centos repositories various packages are available at. Is there a directory somewhere? I tried googling it and didn't find anything.

link|improve this question

74% accept rate
see also serverfault.com/questions/62026/… :) – warren Dec 3 '09 at 12:44
feedback

2 Answers

up vote 2 down vote accepted

If you have the repositories configured on your server "yum list" will show you which packages come from which repositories (or are already installed) in the third column.

[root@cobbler ~]# yum list | egrep 'foo|cobbler'
cobbler.x86_64                             1.6.6-1.el5                 installed
foomatic.x86_64                            3.0.2-38.3.el5              base
revisor-cobbler.noarch                     2.0.5.2-3.el5               epel
link|improve this answer
Thanks! I should clarify - I have most repositories disabled... will this still search through them? – Mike B Dec 2 '09 at 23:49
No, but you can pass the "--enablerepo=*" argument and it will. – cagenut Dec 3 '09 at 19:07
feedback

Doing a yum search on the package name should show the repository from which it would install.

link|improve this answer
Thanks! I should clarify - I have most repositories disabled... will this still search through them? – Mike B Dec 2 '09 at 23:47
no - if they're disabled, yum is being told NOT to search them. Therefore, if you can't find the package you want, you need to enable other repositories. – warren Dec 3 '09 at 2:00
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.