Best CentOS Repositories – Avoiding Poor Quality Repos

centosrepository

I'm used to using ubuntu/debian repositories and they are great. I can apt-get just about any package and it'll be there. I have not found this on centos. I called my hosting company and they suggest I install atomic turtle since it's compatible with cPanel. This didn't work when I tried to install git.

yum install git
...
No package git available

Repeat the same thing for just about any package, the default repositories are pathetic.

So perhaps there are other repositories I can use. Can anyone suggest any?

Edit
The problem was cPanel excluding some git dependencies in yum.conf. See http://www.cmdln.org/2010/05/07/install-git-on-centos-cpanel-server/

Best Answer

EPEL is a great repo, see the information for installing it at the EPEL "howtouse" FAQ entry. In short, you would run:

rpm -Uvh http://download.fedora.redhat.com/pub/epel/5/i386/epel-release-5-4.noarch.rpm
yum update
yum install git

Note that EPEL does include "git".

I also use Ubuntu, and I would say a CentOS box with EPEL is quite comparable to Ubuntu with Universe for server use.