CentOS 8 和 RHEL 8 伺服器上啟用 EPEL 倉庫方法
EPEL 代表 “Extra Packages for Enterprise ”,它是一個自由開源的附加軟體包倉庫,可用於 和 RHEL 伺服器。顧名思義,EPEL 倉庫提供了額外的軟體包,這些軟體在 CentOS 8 和 RHEL 8 的預設軟體包倉庫中不可用。在本文中,我們將演示如何在 CentOS 8 和 RHEL 8 伺服器上啟用和使用 EPEL 儲存庫。 |
最小化安裝的 CentOS 8 和 RHEL 8 伺服器
root 或 sudo 管理員許可權
網路連線
登入或 SSH 到你的 RHEL 8.x 伺服器,並執行以下 dnf 來安裝 EPEL rpm 包,
[root@linuxtechi ~]# dnf install
上面 的輸出將如下所示,
EPEL rpm 包成功安裝後,它將自動啟用並配置其 yum/dnf 倉庫。執行以下 dnf 或 yum 命令,以驗證是否啟用了 EPEL 倉庫,
[root@linuxtechi ~]# dnf repolist epel 或者 [root@linuxtechi ~]# dnf repolist epel -v
登入或 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 倉庫中的所有的軟體包,請執行以下 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 倉庫中的 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 倉庫,請在下面的評論欄分享你的評論和反饋。
來自 “ ITPUB部落格 ” ,連結:http://blog.itpub.net/31524109/viewspace-2674338/,如需轉載,請註明出處,否則將追究法律責任。
相關文章
- 如何在 CentOS 8 和 RHEL 8 伺服器上啟用 EPEL 倉庫CentOS伺服器
- CentOS 8/RHEL 8 REMI 倉庫安裝教程CentOSREM
- 如何在 Centos 8 / RHEL 8 上安裝和配置 VNC 伺服器CentOSVNC伺服器
- 如何在 CentOS 8/RHEL 8 上安裝和使用 CockpitCentOSKPI
- 如何在 CentOS 8/RHEL 8 上安裝和配置 Nagios CoreCentOSiOS
- 如何在 CentOS 8 和 RHEL 8 系統上安裝和使用 AnsibleCentOS
- 如何在 Fedora、CentOS、RHEL 中啟用 RPM Fusion 倉庫CentOS
- 如何在 CentOS 8 / RHEL 8 上安裝 VirtualBox 6.0CentOS
- RHEL8&CentOS8配置IP地址和DNSCentOSDNS
- 如何在 CentOS8/RHEL8 中配置 Rsyslog 伺服器CentOS伺服器
- 如何在 CentOS 8/RHEL 8 上安裝 Ansible(自動化工具)CentOS
- 如何在 RHEL8 /CentOS8 上建立多節點 Elastic stack 叢集CentOSAST
- 搭建企業內部yum倉庫(centos6+centos7+epel源)CentOS
- CentOS 8 啟用 NTP 服務CentOS
- 在rhel和CentOS上安裝SQL Server的方法CentOSSQLServer
- redhat8 rhel8 啟動grub損壞修復Redhat
- 如何在 CentOS 8 上安裝和配置 Postfix 郵件伺服器CentOS伺服器
- Centos8 安裝 Gogs 程式碼倉庫管理工具CentOSGo
- 阿里雲 CentOS 映象和 EPEL 源阿里CentOS
- 在Centos8上安裝和使用curlCentOS
- 如何在 CentOS 8 上配置和管理防火牆CentOS防火牆
- Centos 8 搭建時鐘伺服器CentOS伺服器
- CentOS 8 安裝 mariadb 伺服器CentOS伺服器
- RHEL8網路配置
- CentOS8開啟SSH服務CentOS
- CentOS 8 安裝 Caddy Web伺服器CentOSWeb伺服器
- Centos8 如何配置DHCP伺服器CentOS伺服器
- 基於 CentOS 8 搭建 openLDAP 伺服器CentOSLDA伺服器
- 8.namespace新增私有倉庫憑據namespace
- RHEL 8 搭建 Apache Web 服務ApacheWeb
- RHEL 8 搭建 Nginx Web 服務NginxWeb
- 如何在 CentOS、RHEL 和 Fedora 上安裝 DHCP 服務CentOS
- Centos8升級到Centos 8 stream教程。CentOS
- CentOs6.8上安裝maven本地倉庫CentOSMaven
- centos7建立本地倉庫的方法CentOS
- 如何在 CentOS 7 / RHEL 7 終端伺服器上安裝 KVMCentOS伺服器
- centos stream 8CentOS
- rhel 7.6使用映象做本地yum倉庫