Run "yum repolist all" to see the repos you have. You can enable repos with yum-config-manager --enable <repo>
时间: 2024-01-05 15:17:44 浏览: 337
Centos8 repo
当你在CentOS7上运行yum时,如果出现提示“Run "yum repolist all" to see the repos you have”,这意味着你需要查看你当前的yum仓库列表。你可以通过运行“yum repolist all”命令来查看。如果你想启用某个仓库,你可以使用“yum-config-manager --enable <repo>”命令来启用它。另外,如果你想安装yum-utils但是无法运行,你可以尝试更换yum源,具体步骤如下:
1. 运行命令“wget -O /etc/yum.repos.d/CentOS-Base.repo http://mirrors.aliyun.com/repo/Centos-7.repo”来更换yum源。
2. 运行命令“yum -y install yum-utils”来安装yum-utils。
3. 运行命令“yum-config-manager --enable <repo>”来启用你需要的仓库。
阅读全文