简介

EPEL 是 Extra Packages for Enterprise Linux 的缩写,是一个开源的、免费的软件库,为 Enterprise Linux 提供额外的软件包,可以使 Rocky Linux 9 或 8 发行版受益。

一、EPEL 源安装

1.1、更新系统中所有的软件包

1
2
# 更新软件包
sudo dnf upgrade --refresh -y

1.2、导入 EPEL 源

① 启用 CRB

1
sudo dnf config-manager --set-enabled crb  

② 安装 EPEL 源

1
2
3
sudo dnf install \
https://dl.fedoraproject.org/pub/epel/epel-release-latest-9.noarch.rpm \
https://dl.fedoraproject.org/pub/epel/epel-next-release-latest-9.noarch.rpm

1.3、验证 EPEL 源

1
dnf repolist | grep epel

二、EPEL 其他命令

软件列表

1
2
# 查看 epel 源的所有包  
dnf --disablerepo="*" --enablerepo="epel" list available

查找某个包

1
2
# 查看 phpmyadmin
sudo dnf --disablerepo="*" --enablerepo="epel" list available | grep -i phpMyAdmin

删除 EPEL 源

1
sudo dnf remove epel-release