大家都知道Centos8于2021年年底停止了服务,大家再在使用yum源安装时候,出现下面错误“错误:Failed to download metadata for repo 'AppStream': Cannot prepare internal mirrorlist: No URLs in mirrorlist”

CentOS Linux学习笔记总结(一百零八)_CentOS

最终原因还是源的问题,解决办法也是解决源的问题。

解决办法如下:

1、进入yum的repos目录

命令:

cd /etc/yum.repos.d/

2、修改所有的CentOS文件内容

命令:

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-*

3、更新yum源为阿里镜像

命令:

wget -O /etc/yum.repos.d/CentOS-Base.repo https://mirrors.aliyun.com/repo/Centos-vault-8.5.2111.repo

yum clean all

yum makecache

CentOS Linux学习笔记总结(一百零八)_yum安装_02

4、yum安装测试是否可以yum安装

命令:

yum install wget –y

CentOS Linux学习笔记总结(一百零八)_CentOS_03

问题解决。