Home > Article > Operation and Maintenance > what is linux epel
linux epel is a project based on Fedora. Its full English name is "Extra Packages for Enterprise Linux". It provides additional software packages for "Red Hat" operating systems and is suitable for RHEL, CentOS and Scientific Linux. .
The operating environment of this tutorial: linux5.9.8 system, Dell G3 computer.
What is linux epel?
EPEL (Extra Packages for Enterprise Linux) is a project based on Fedora that provides additional software packages for "Red Hat" operating systems, suitable for RHEL, CentOS and Scientific Linux.
We often cannot find rpm when installing using yum under Centos. The rpm packages provided by the official rpm repository are not rich enough. In many cases, it is painful to compile by yourself. EPEL can solve these two problems. . The full name of EPEL is Extra Packages for Enterprise Linux. EPEL is a project created by the Fedora community to provide high-quality software packages for RHEL and derivative distributions such as CentOS and Scientific Linux. After installing EPEL, it is equivalent to adding a third-party source.
yum -y install epel-release yum repolist
yum clean all yum makecache
vi /etc/yum.repos.d/epel.repo [epel] name=epel mirrorlist=http://mirrors.fedoraproject.org/mirrorlist?repo=epel-releasever&arch=releasever&arch=basearch enabled=1 gpgcheck=0
Recommended study: "linux video tutorial"
The above is the detailed content of what is linux epel. For more information, please follow other related articles on the PHP Chinese website!