如何在 CentOS 8 和 RHEL 8 伺服器上啟用 EPEL 倉庫
EPEL 倉庫的先決條件
- 最小化安裝的 CentOS 8 和 RHEL 8 伺服器
- root 或 sudo 管理員許可權
- 網路連接
在 RHEL 8.x 伺服器上安裝並啟用 EPEL 倉庫
登錄或 SSH 到你的 RHEL 8.x 伺服器,並執行以下 dnf
命令來安裝 EPEL rpm 包,
[root@linuxtechi ~]# dnf install https://dl.fedoraproject.org/pub/epel/epel-release-latest-8.noarch.rpm -y
上面命令的輸出將如下所示,
EPEL rpm 包成功安裝後,它將自動啟用並配置其 yum/dnf 倉庫。運行以下 dnf
或 yum
命令,以驗證是否啟用了 EPEL 倉庫,
[root@linuxtechi ~]# dnf repolist epel
或者
[root@linuxtechi ~]# dnf repolist epel -v
在 CentOS 8.x 伺服器上安裝並啟用 EPEL 倉庫
登錄或 SSH 到你的 CentOS 8 伺服器,並執行以下 dnf
或 yum
命令來安裝 epel-release
rpm 軟體包。在 CentOS 8 伺服器中,EPEL rpm 在其默認軟體包倉庫中。
[root@linuxtechi ~]# dnf install epel-release -y
或者
[root@linuxtechi ~]# yum install epel-release -y
執行以下命令來驗證 CentOS 8 伺服器上 EPEL 倉庫的狀態,
[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 倉庫上執行一些基本操作。
列出 EPEL 倉庫種所有可用包
如果要列出 EPEL 倉庫中的所有的軟體包,請運行以下 dnf
命令,
[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 倉庫中搜索軟體包
假設我們要搜索 EPEL 倉庫中的 Zabbix 包,請執行以下 dnf
命令,
[root@linuxtechi ~]# dnf repository-packages epel list | grep -i zabbix
上面命令的輸出類似下面這樣,
從 EPEL 倉庫安裝軟體包
假設我們要從 EPEL 倉庫安裝 htop 包,運行以下 dnf
命令,
語法:
# dnf –enablerepo=」epel」 install <包名>
[root@linuxtechi ~]# dnf --enablerepo="epel" install htop -y
注意:如果我們在上面的命令中未指定 –enablerepo=epel
,那麼它將在所有可用的軟體包倉庫中查找 htop 包。
本文就是這些內容了,我希望上面的步驟能幫助你在 CentOS 8 和 RHEL 8 伺服器上啟用並配置 EPEL 倉庫,請在下面的評論欄分享你的評論和反饋。
via: https://www.linuxtechi.com/enable-epel-repo-centos8-rhel8-server/
作者:Pradeep Kumar 選題:lujun9972 譯者:geekpi 校對:wxy
本文轉載來自 Linux 中國: https://github.com/Linux-CN/archive