ZDreamST 2015-01-22
系统环境:Red Hat Enterprise Linux Server release 6.2 (Santiago)
一、EPEL是什么
EPEL(Extra Packages for Enterprise Linux,企业版Linux的额外软件包)是Fedora小组维护的一个软件仓库项目,为RHEL/CentOS提供他们默认不提供的软件包。这个源兼容RHEL及像CentOS和Scientific Linux这样的衍生版本。
我们可以很容易地通过yum命令从EPEL源上获取上万个在CentOS自带源上没有的软件。EPEL提供的软件包大多基于其对应的Fedora软件包,不会与企业版Linux发行版本的软件发生冲突或替换其文件。
更多关于EPEL项目的细节,可以到以下网站获取:https://fedoraproject.org/wiki/EPEL
二、在RHEL上安装EPEL
1、确认系统的版本
$ cat /etc/redhat-release Red Hat Enterprise Linux Server release 6.2 (Santiago)
2、下载和系统版本对应的rpm安装包
$ wget http://dl.fedoraproject.org/pub/epel/6/x86_64/epel-release-6-8.noarch.rpm
3、安装EPEL
$ sudo rpm -ivh epel-release-6-8.noarch.rpm
4、检查EPEL源
$ yum repolist
更新CA证书就可以,不过在此同时需要临时禁用epel源并更新就可以了,命令如下:yum --disablerepo=epel -y update ca-certificates. 运行过后,一切好使。