EPEL,即Extra Packages for Enterprise Linux,这个软件仓库里有很多非常常用的软件,而且是专门针对RHEL设计的,对RHEL标准yum源是一个很好的补充,完全免费使用,由Fedora项目维护,所以如果你使用的是RHEL,或者CentOS,Scientific等RHEL系的linux,可以非常放心的使用EPEL的yum源。
配置EPEL的yum源也是相当的简单,针对不同的Linux版本,方法如下:
1.如果你使用的是RHEL6.x,CentOS6.x,Scientific6.x等6.x的RHEL系linux的话,执行:
[root@test ~]# rpm -ivh http://download.fedoraproject.org/pub/epel/6/i386/epel-release-6-5.noarch.rpm
2.如果你使用的是5.x系列的,执行:
[root@test ~]# rpm -ivh http://download.fedoraproject.org/pub/epel/5/i386/epel-release-5-4.noarch.rpm
3.如果你使用的是4.x系列的,执行:
[root@test ~]# rpm -ivh http://download.fedoraproject.org/pub/epel/4/i386/epel-release-4-10.noarch.rpm
其实上面安装的那个包就是在你系统/etc/yum.repos.d/下释放了2个yum源的repo文件而已:
/etc/yum
.repos.d
/epel
.repo 正式版,所有的软件都是稳定可以信赖的
/etc/yum
.repos.d
/epel-testing
.repo 测试版
但是默认情况下,只有正式版是有效状态的,如果你想试试测试版的话,需要修改/etc/yum.repos.d/epel-testing.repo,把enabled=0改成enabled=1即可。
另外,如果你要使用yumdownloader来下载src.rpm包的话,需要把epel.repo里[epel-source]域下的enabled=0也改成enabled=1即可。
当然了,如果你暂时不想使用EPEL的yum源的话,把对应文件里的enabled=1改成enabled=0就行了,如果你完全不需要了,那就直接卸载掉:
[root@test ~]# rpm -e epel-release
注意:上面安装的rpm包,如果官方升级了的话,链接也就变了,自己去官方确认。
Epel介绍
具体请参见:http://fedoraproject.org/wiki/EPEL Linux学习,http:// linux.it.net.cn
如何安装 Epel源到 RHEL/CentOS 7/6/5?
通过wget命令下载RPM文件,然后安装。 IT网,http://www.it.net.cn
RHEL/CentOS 7 64 Bit
## RHEL/CentOS 7 64-Bit ##
# wget http://dl.fedoraproject.org/pub/epel/beta/7/x86_64/epel-release-7-0.2.noarch.rpm
# rpm -ivh epel-release-7-0.2.noarch.rpm Linux学习,http:// linux.it.net.cn
RHEL/CentOS 6 32-64 Bit
## RHEL/CentOS 6 32-Bit ##
# wget http://download.fedoraproject.org/pub/epel/6/i386/epel-release-6-8.noarch.rpm
# rpm -ivh epel-release-6-8.noarch.rpm
## RHEL/CentOS 6 64-Bit ##
# wget http://download.fedoraproject.org/pub/epel/6/x86_64/epel-release-6-8.noarch.rpm
# rpm -ivh epel-release-6-8.noarch.rpm Linux学习,http:// linux.it.net.cn
RHEL/CentOS 5 32-64 Bit
## RHEL/CentOS 5 32-Bit ##
# wget http://download.fedoraproject.org/pub/epel/5/i386/epel-release-5-4.noarch.rpm
# rpm -ivh epel-release-5-4.noarch.rpm
## RHEL/CentOS 5 64-Bit ##
# wget http://download.fedoraproject.org/pub/epel/5/x86_64/epel-release-5-4.noarch.rpm
# rpm -ivh epel-release-5-4.noarch.rpm Linux学习,http:// linux.it.net.cn
RHEL/CentOS 4 32-64 Bit
## RHEL/CentOS 4 32-Bit ## # wget http://download.fedoraproject.org/pub/epel/4/i386/epel-release-4-10.noarch.rpm # rpm -ivh epel-release-4-10.noarch.rpm ## RHEL/CentOS 4 64-Bit ## # wget http://download.fedoraproject.org/pub/epel/4/x86_64/epel-release-4-10.noarch.rpm # rpm -ivh epel-release-4-10.noarch.rpmLinux学习,http:// linux.it.net.cn
如何检查epel是否安装成功?
使用一下命令: IT网,http://www.it.net.cn
# yum repolist IT网,http://www.it.net.cn
输出如下
[root@Lixiaolong ~]# yum repolist
Loaded plugins: fastestmirror
Loading mirror speeds from cached hostfile
* base: mirrors.yun-idc.com
* epel: ftp.sjtu.edu.cn
* extras: mirrors.yun-idc.com
* updates: mirrors.yun-idc.com
repo id repo name status
base/7/x86_64 CentOS-7 - Base 8,465
epel/x86_64 Extra Packages for Enterprise Linux 7 - x86_64 5,036
extras/7/x86_64 CentOS-7 - Extras 30
updates/7/x86_64 CentOS-7 - Updates 423
repolist: 13,954
[root@Lixiaolong ~]#
Linux学习,http:// linux.it.net.cn
如何使用epel源安装软件?
例如想查看cacti信息 IT网,http://www.it.net.cn
# yum --enablerepo=epel info cacti Linux学习,http:// linux.it.net.cn
Sample Output
安装则执行以下命令: Linux学习,http:// linux.it.net.cn
# yum --enablerepo=epel install cactiIT网,http://www.it.net.cn
Note: Epel的配置文件在/etc/yum.repos.d/epel.repo.