RHEL以及他的衍生髮行版如CentOS、Scientific Linux爲了穩定,官方的rpm repository提供的rpm包每每是很滯後的,而EPEL偏偏能夠解決這兩方面的問題。EPEL的全稱叫 Extra Packages for Enterprise Linux 。EPEL是由 Fedora 社區打造,爲 RHEL 及衍生髮行版如 CentOS、Scientific Linux 等提供高質量軟件包的項目。裝上了 EPEL以後,就至關於添加了一個第三方源。在某些狀況下,經過 EPEL repo 安裝一些軟件比其餘安裝方式方便不少。bash
衆所周知,rpmfusion.org 主要爲桌面發行版提供大量rpm包,而EPEL則爲服務器版本提供大量的rpm包,並且大多數rpm包在官方 repository 中是找不到的。絕大多數rpm包要比官方 repository 的rpm包版本要新。服務器
yum -y install epel-release
yum repolist Loaded plugins: fastestmirror, ovl Loading mirror speeds from cached hostfile * base: ap.stykers.moe * epel: mirror01.idc.hinet.net * extras: mirrors.cn99.com * updates: mirrors.njupt.edu.cn repo id repo name status base/7/x86_64 CentOS-7 - Base 10019 *epel/x86_64 Extra Packages for Enterprise Linux 7 - x86_64 12973 extras/7/x86_64 CentOS-7 - Extras 371 updates/7/x86_64 CentOS-7 - Updates 1163 repolist: 24526
咱們能夠與安裝以前對比一下:ide
yum repolist Loaded plugins: fastestmirror, ovl Loading mirror speeds from cached hostfile * base: mirrors.nwsuaf.edu.cn * extras: mirrors.nwsuaf.edu.cn * updates: mirrors.nwsuaf.edu.cn repo id repo name status base/7/x86_64 CentOS-7 - Base 10019 extras/7/x86_64 CentOS-7 - Extras 371 updates/7/x86_64 CentOS-7 - Updates 1163 repolist: 11553
效果不言而喻。.net
經過 rpm 包能夠安裝,下載地址以下:<https://dl.fedoraproject.org/pub/epel/epel-release-latest-7.noarch.rpm>;code