CENTOS7
解决这个问题的办法:就是把官方的yum源替换为国内的yum源。比如替换为阿里源、清华源、网易源、中科大源等等…(在此介绍替换阿里云的yum源)
暖心提示:在操作备份yum源文件前,先确保本机安装了wget工具,后续用得到。(yum install -y wget)
1、备份官方yum源配置文件
mv /etc/yum.repos.d/CentOS-Base.repo /etc/yum.repos.d/CentOS-Base.repo.backup
2、下载阿里云源配置,覆盖原文件
wget -O /etc/yum.repos.d/CentOS-Base.repo https://mirrors.aliyun.com/repo/Centos-7.repo
3、清理缓存并生成新的缓存
命令:
yum clean all && yum makecache
如果出现”Failed connect to mirrors.aliyuncs.com:80; Connection refused”的错误,重试即可。
4、更新软件
注意:这一步会更新操作系统中所有软件到最新版,不是必要操作。而且网速慢的情况下,会非常耗时,谨慎操作。
命令:sudo yum -y update
如果要中断,就按Ctrl+C。
CENTOS8
进入root,切换至yum.repos.d目录
cd /etc/yum.repos.d/
创建新文件夹并将源文件备份为repo.bak
mkdir backup && mv *repo backup/
下载国内yum源文件
curl -o /etc/yum.repos.d/CentOS-Base.repo http://mirrors.aliyun.com/repo/Centos-8.repo
更新下载yum源地址
sed -i -e"s|mirrors.cloud.aliyuncs.com|mirrors.aliyun.com|g " /etc/yum.repos.d/CentOS-*
sed -i -e "s|releasever|releasever-stream|g" /etc/yum.repos.d/CentOS-*
生成缓存
yum clean all && yum makecache
Please indicate: 无趣的人生也产生有意思的事件 » centos7及centos8更换可用源