CentOS6.x/7.x/8.x更改为阿里云yum源

将CentOS的yum源更换为国内的阿里云源

摘要: 阿里云Linux安装镜像源地址:http://mirrors.aliyun.com/

第一步:备份你的原镜像文件,以免出错后可以恢复。
mv /etc/yum.repos.d/CentOS-Base.repo /etc/yum.repos.d/CentOS-Base.repo.backup
第二步:
CentOS 5
wget -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

CentOS 7
wget -O /etc/yum.repos.d/CentOS-Base.repo http://mirrors.aliyun.com/repo/Centos-7.repo

CentOS 8
wget -O /etc/yum.repos.d/CentOS-Base.repo http://mirrors.aliyun.com/repo/Centos-8.repo

更改CentOS-Media.repo使其为不生效:

vim /etc/yum.repos.d/CentOS-Media.repo

enabled=0
第三步:
yum clean all && yum makecache
yum update -y

文章参考

  • 将Centos的yum源更换为国内的阿里云源

你可能感兴趣的:(CentOS6.x/7.x/8.x更改为阿里云yum源)