EPEL 表明 「Extra Packages for Enterprise Linux」,它是一個自由開源的附加軟件包倉庫,可用於 CentOS 和 RHEL 服務器。顧名思義,EPEL 倉庫提供了額外的軟件包,這些軟件在 CentOS 8 和 RHEL 8 的默認軟件包倉庫中不可用。mysql
在本文中,咱們將演示如何在 CentOS 8 和 RHEL 8 服務器上啓用和使用 EPEL 存儲庫。linux
登陸或 SSH 到你的 RHEL 8.x 服務器,並執行如下 dnf
命令來安裝 EPEL rpm 包,c++
[root@linuxtechi ~]# dnf install https://dl.fedoraproject.org/pub/epel/epel-release-latest-8.noarch.rpm -y
複製代碼
上面命令的輸出將以下所示,git
EPEL rpm 包成功安裝後,它將自動啓用並配置其 yum/dnf 倉庫。運行如下 dnf
或 yum
命令,以驗證是否啓用了 EPEL 倉庫,github
[root@linuxtechi ~]# dnf repolist epel
或者
[root@linuxtechi ~]# dnf repolist epel -v
複製代碼
登陸或 SSH 到你的 CentOS 8 服務器,並執行如下 dnf
或 yum
命令來安裝 epel-release
rpm 軟件包。在 CentOS 8 服務器中,EPEL rpm 在其默認軟件包倉庫中。web
[root@linuxtechi ~]# dnf install epel-release -y
或者
[root@linuxtechi ~]# yum install epel-release -y
複製代碼
執行如下命令來驗證 CentOS 8 服務器上 EPEL 倉庫的狀態,sql
[root@linuxtechi ~]# dnf repolist epel
Last metadata expiration check: 0:00:03 ago on Sun 13 Oct 2019 04:18:05 AM BST.
repo id repo name status
*epel Extra Packages for Enterprise Linux 8 - x86_64 1,977
[root@linuxtechi ~]#
[root@linuxtechi ~]# dnf repolist epel -v
……………………
Repo-id : epel
Repo-name : Extra Packages for Enterprise Linux 8 - x86_64
Repo-status : enabled
Repo-revision: 1570844166
Repo-updated : Sat 12 Oct 2019 02:36:32 AM BST
Repo-pkgs : 1,977
Repo-size : 2.1 G
Repo-metalink: https://mirrors.fedoraproject.org/metalink?repo=epel-8&arch=x86_64&infra=stock&content=centos
Updated : Sun 13 Oct 2019 04:28:24 AM BST
Repo-baseurl : rsync://repos.del.extreme-ix.org/epel/8/Everything/x86_64/ (34 more)
Repo-expire : 172,800 second(s) (last: Sun 13 Oct 2019 04:28:24 AM BST)
Repo-filename: /etc/yum.repos.d/epel.repo
Total packages: 1,977
[root@linuxtechi ~]#
複製代碼
以上命令的輸出說明咱們已經成功啓用了 EPEL 倉庫。讓咱們在 EPEL 倉庫上執行一些基本操做。centos
若是要列出 EPEL 倉庫中的全部的軟件包,請運行如下 dnf
命令,bash
[root@linuxtechi ~]# dnf repository-packages epel list
……………
Last metadata expiration check: 0:38:18 ago on Sun 13 Oct 2019 04:28:24 AM BST.
Installed Packages
epel-release.noarch 8-6.el8 @epel
Available Packages
BackupPC.x86_64 4.3.1-2.el8 epel
BackupPC-XS.x86_64 0.59-3.el8 epel
CGSI-gSOAP.x86_64 1.3.11-7.el8 epel
CGSI-gSOAP-devel.x86_64 1.3.11-7.el8 epel
Field3D.x86_64 1.7.2-16.el8 epel
Field3D-devel.x86_64 1.7.2-16.el8 epel
GraphicsMagick.x86_64 1.3.33-1.el8 epel
GraphicsMagick-c++.x86_64 1.3.33-1.el8 epel
…………………………
zabbix40-web-mysql.noarch 4.0.12-1.el8 epel
zabbix40-web-pgsql.noarch 4.0.12-1.el8 epel
zerofree.x86_64 1.1.1-3.el8 epel
zimg.x86_64 2.8-4.el8 epel
zimg-devel.x86_64 2.8-4.el8 epel
zstd.x86_64 1.4.2-1.el8 epel
zvbi.x86_64 0.2.35-9.el8 epel
zvbi-devel.x86_64 0.2.35-9.el8 epel
zvbi-fonts.noarch 0.2.35-9.el8 epel
[root@linuxtechi ~]#
複製代碼
假設咱們要搜索 EPEL 倉庫中的 Zabbix 包,請執行如下 dnf
命令,服務器
[root@linuxtechi ~]# dnf repository-packages epel list | grep -i zabbix
複製代碼
上面命令的輸出相似下面這樣,
假設咱們要從 EPEL 倉庫安裝 htop 包,運行如下 dnf
命令,
語法:
# dnf –enablerepo=」epel」 install <包名>
複製代碼
[root@linuxtechi ~]# dnf --enablerepo="epel" install htop -y
複製代碼
注意:若是咱們在上面的命令中未指定 –enablerepo=epel
,那麼它將在全部可用的軟件包倉庫中查找 htop 包。
本文就是這些內容了,我但願上面的步驟能幫助你在 CentOS 8 和 RHEL 8 服務器上啓用並配置 EPEL 倉庫,請在下面的評論欄分享你的評論和反饋。
via: www.linuxtechi.com/enable-epel…
做者:Pradeep Kumar 選題:lujun9972 譯者:geekpi 校對:wxy