CentOS国内镜像-YUM源更新

Yum 默认配置目录
/etc/yum.repos.d/CentOS-Base.repo
更新前 ,首先备份 .有时候还是需要原始源,嘿嘿
mv /etc/yum.repos.d/CentOS-Base.repo /etc/yum.repos.d/CentOS-Base.repo.origin

1 网易镜像
下载相应文件,放入/etc/yum.repos.d/
http://mirrors.163.com/.help/CentOS7-Base-163.repo
http://mirrors.163.com/.help/CentOS6-Base-163.repo
http://mirrors.163.com/.help/CentOS5-Base-163.repo

运行以下命令生成缓存
yum clean all
yum makecache

参考帮助

2 阿里云镜像

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

之后运行yum makecache生成缓存
阿里云其他系统镜像参考

3 清华镜像
https://mirrors.tuna.tsinghua.edu.cn/

猜你喜欢

转载自blog.csdn.net/CSDN1887/article/details/81540311