CentOS换yum源为国内源

CentOS换源

yum源

备份原来的文件.

mv /etc/yum.repos.d/CentOS-Base.repo /etc/yum.repos.d/CentOS-Base.repo.backup

下载阿里yum源

CentOS 7

wget -O /etc/yum.repos.d/CentOS-Base.repo http://mirrors.aliyun.com/repo/Centos-7.repo
或者(无法使用wget 则使用curl)
curl -o /etc/yum.repos.d/CentOS-Base.repo http://mirrors.aliyun.com/repo/Centos-7.repo

之后生成缓存

yum clean all
yum makecache
原文地址:https://www.cnblogs.com/whiteY/p/13755034.html