我无法安装添加 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 repolist
,epel
则根本不会列出。我哪里错了?
答案1
epel
通常在安装 RPM 时默认启用。如果由于某种原因没有启用,您需要启用它,但您运行的命令启用了codeready-builder
存储库。
运行此命令以启用epel
:
dnf config-manager --enable epel
然后你可以运行dnf repolist
来查看epel
列出的内容。