CentOS 更换 yum 源
2019-12-03 本文已影响0人
qyfl
// 备份
mv /etc/yum.repos.d/CentOS-Base.repo /etc/yum.repos.d/CentOS-Base.repo.backup
// 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-Media.repo使其为不生效:(本机已经是不生效)
enabled=0
// 运行yum makecache生成缓存
yum clean all
yum makecache