在CentOS 上安裝EPELhtml
要想安裝EPEL,咱們先要下載EPEL的rpm安裝包。nginx
CentOS/RHEL下的6.x和5.x版本下載頁面以下:shell
http://download.fedoraproject.org/pub/epel/6/i386/repoview/epel-release.html centos
http://download.fedoraproject.org/pub/epel/5/i386/repoview/epel-release.htmlide
以上網址可能會被重定向到特定的鏡像站而加快下載速度。這個頁面包含能夠直接獲取到rpm包的下載連接。直接的下載連接以下:code
http://download.fedoraproject.org/pub/epel/6/i386/epel-release-6-8.noarch.rpm htm
http://download.fedoraproject.org/pub/epel/5/i386/epel-release-5-4.noarch.rpmget
根據你的CentOS 版原本選擇正確的下載地址。it
請注意EPEL 的安裝包是獨立編譯的,因此它能夠安裝在32位和64位系統中。編譯
1. 確認你的CentOS 的版本
首先經過如下命令確認你的CentOS 版本
$ cat /etc/redhat-release CentOS release 6.4 (Final)
2. 下載EPEL 的rpm 安裝包
如今從上面的地址下載CentOS 版本所對應的EPEL 的版本
$ wget http://download.fedoraproject.org/pub/epel/6/i386/epel-release-6-8.noarch.rpm
3. 安裝EPEL
經過如下命令安裝EPEL 軟件包
$ sudo rpm -ivh epel-release-6-8.noarch.rpm
或
$ sudo rpm -ivh epel-release*
5. 檢查EPEL 源
安裝好EPEL 源後,用yum 命令來檢查是否添加到源列表
# yum repolist Loaded plugins: fastestmirror Loading mirror speeds from cached hostfile * base: mirrors.vonline.vn * epel: buaya.klas.or.id * extras: centos-hn.viettelidc.com.vn * updates: mirrors.fibo.vn repo id repo name status base CentOS-6 - Base 6,381 epel Extra Packages for Enterprise Linux 6 - x86_64 10,023 extras CentOS-6 - Extras 13 nginx nginx repo 47 updates CentOS-6 - Updates 1,555 repolist: 18,019
EPEL已經在repo 後列出,而且顯示提供了上萬個軟件包,因此EPEL 已經安裝到你的CentOS了。
EPEL源的配置安裝到了 /etc/yum.repos.d/epel.repo 文件。
如今來試一下從EPEL 獲取軟件包
$ sudo yum install htop
via: http://www.binarytides.com/setup-epel-repository-centos/