Any time I do yum install ___, what used to be normally accessible is no longer so.

I think it is because of an installed repository causing the issue.

How do I remove all repositories?

link|improve this question
feedback

2 Answers

up vote 1 down vote accepted

Try cleaning yum.

clean [ packages | headers | metadata | cache | dbcache | all ]
link|improve this answer
feedback

Removing all of them is a bad idea. Try selectively disabling them using the --disablerepo= switch. You can use that switch multiple times to remove several repos, or you can combine it with the --enablerepo= to create a white list.

yum --disablerepo="*" --enablerepo="rpmforge" install blahblahblah

That'll enable only rpmforge.

Run yum repolist for a list of your repositories.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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