CentOS 8 和 RHEL 8 伺服器上啟用 EPEL 倉庫方法

夢共裡醉發表於2020-02-01
EPEL 代表 “Extra Packages for Enterprise  ”,它是一個自由開源的附加軟體包倉庫,可用於   和 RHEL 伺服器。顧名思義,EPEL 倉庫提供了額外的軟體包,這些軟體在 CentOS 8 和 RHEL 8 的預設軟體包倉庫中不可用。在本文中,我們將演示如何在 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 

上面 的輸出將如下所示,

CentOS 8 和 RHEL 8 伺服器上啟用 EPEL 倉庫方法CentOS 8 和 RHEL 8 伺服器上啟用 EPEL 倉庫方法

EPEL rpm 包成功安裝後,它將自動啟用並配置其 yum/dnf 倉庫。執行以下 dnf 或 yum 命令,以驗證是否啟用了 EPEL 倉庫,

[root@linuxtechi ~]# dnf repolist epel
或者
[root@linuxtechi ~]# dnf repolist epel -v

CentOS 8 和 RHEL 8 伺服器上啟用 EPEL 倉庫方法CentOS 8 和 RHEL 8 伺服器上啟用 EPEL 倉庫方法

在 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: 
  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

上面命令的輸出類似下面這樣,

CentOS 8 和 RHEL 8 伺服器上啟用 EPEL 倉庫方法CentOS 8 和 RHEL 8 伺服器上啟用 EPEL 倉庫方法

從 EPEL 倉庫安裝軟體包

假設我們要從 EPEL 倉庫安裝 htop 包,執行以下 dnf 命令,

語法:

# dnf –enablerepo=”epel” install < 包名>
[root@linuxtechi ~]# dnf --enablerepo="epel" install htop -y

注意:如果我們在上面的命令中未指定 –enablerepo=epel,那麼它將在所有可用的軟體包倉庫中查詢 htop 包。本文就是這些內容了,我希望上面的步驟能幫助你在 CentOS 8 和 RHEL 8 伺服器上啟用並配置 EPEL 倉庫,請在下面的評論欄分享你的評論和反饋。


來自 “ ITPUB部落格 ” ,連結:http://blog.itpub.net/31524109/viewspace-2674338/,如需轉載,請註明出處,否則將追究法律責任。

相關文章