Centos8 yum 源更新
Centos8 于 2021 年年底停止了服务,大家再在使用yum源安装时候,出现下面错误
错误:Failed to download metadata for repo ‘AppStream’: Cannot prepare internal mirrorlist: No URLs in mirrorlist
解决方式如下
1、进入yum的repos目录
1 | cd /etc/yum.repos.d/ |
2、修改所有的CentOS文件内容
1 | sed -i 's/mirrorlist/#mirrorlist/g' /etc/yum.repos.d/CentOS-* |
3、yum安装测试是否可以yum安装
1 | yum install wget |
4、更新yum源为阿里镜像
1 | wget -O /etc/yum.repos.d/CentOS-Base.repo https://mirrors.aliyun.com/repo/Centos-vault-8.5.2111.repo |
All articles on this blog are licensed under CC BY-NC-SA 4.0 unless otherwise stated.