使用 yum update -y 报错 Repository extras is listed more than once in the configuration
2020 年 12 月 8 号,CentOS 官方宣布了停止维护 CentOS Linux 的计划,并推出了 CentOS Stream 项目,CentOS Linux 8 作为 RHEL 8 的复刻版本,生命周期缩短,于 2021 年 12 月 31 日停止更新并停止维护(EOL),更多的信息可以查看 CentOS 官方公告。如果需要更新 CentOS,需要将镜像从 mirror.centos.org
更改为 vault.centos.org
文章来源:https://www.toymoban.com/news/detail-525664.html
解决如下:文章来源地址https://www.toymoban.com/news/detail-525664.html
cd /etc/yum.repos.d/
#更新yum源为阿里源
wget -O /etc/yum.repos.d/CentOS-Base.repo https://mirrors.aliyun.com/repo/Centos-vault-8.5.2111.repo
sed -i 's/mirrorlist/#mirrorlist/g' /etc/yum.repos.d/CentOS-*
sed -i 's|#baseurl=http://mirror.centos.org|baseurl=http://vault.centos.org|g' /etc/yum.repos.d/CentOS-*
#如果已经安装了wget就不需要这一步
yum install wget –y
yum clean all
yum makecache
#验证
yum install -y vim
``
到了这里,关于Centos 报错 Repository extras is listed more than once in the configuration的文章就介绍完了。如果您还想了解更多内容,请在右上角搜索TOY模板网以前的文章或继续浏览下面的相关文章,希望大家以后多多支持TOY模板网!