无法在 RHEL8.1 上添加 epel 存储库

无法在 RHEL8.1 上添加 epel 存储库

我无法安装添加 epel 存储库。我执行了以下操作,没有错误:

# dnf install https://dl.fedoraproject.org/pub/epel/epel-release-latest-8.noarch.rpm

# ARCH=$( /bin/arch )
    subscription-manager repos --enable "codeready-builder-for-rhel-8-${ARCH}-rpms"

现在,如果我列出带有 的存储库dnf repolistepel则根本不会列出。我哪里错了?

答案1

epel通常在安装 RPM 时默认启用。如果由于某种原因没有启用,您需要启用它,但您运行的命令启用了codeready-builder存储库。

运行此命令以启用epel

dnf config-manager --enable epel

然后你可以运行dnf repolist来查看epel列出的内容。

相关内容