1.备份源文件
sudo mkdir /opt/centos-yum.bak
sudo mv /etc/yum.repos.d/* /opt/centos-yum.bak/
2.查看centos 版本号
cat /etc/redhat-release
3.在阿里云镜像库找到符合自己centos版本的镜像源(以下操作都是在sudo 下进行的)
CentOS 5
wget -O /etc/yum.repos.d/CentOS-Base.repo http://mirrors.aliyun.com/repo/Centos-5.repo
或者
curl -o /etc/yum.repos.d/CentOS-Base.repo http://mirrors.aliyun.com/repo/Centos-5.repo
CentOS 6
wget -O /etc/yum.repos.d/CentOS-Base.repo http://mirrors.aliyun.com/repo/Centos-6.repo
或者
curl -o /etc/yum.repos.d/CentOS-Base.repo http://mirrors.aliyun.com/repo/Centos-6.repo
CentOS 7
wget -O /etc/yum.repos.d/CentOS-Base.repo http://mirrors.aliyun.com/repo/Centos-7.repo
或者
curl -o /etc/yum.repos.d/CentOS-Base.repo http://mirrors.aliyun.com/repo/Centos-7.repo
4.
yum clean all
yum makecache
本文详细介绍了如何将CentOS系统的默认软件源更换为阿里云提供的镜像源,包括备份源文件、确定CentOS版本号、下载并配置对应的镜像文件以及更新缓存等步骤。
7100

被折叠的 条评论
为什么被折叠?



