Centos7使用阿里云yum源

centos 自带的yum源速度巨慢无比,所以使用阿里云yum源。

备份原始源文件



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

如果是centos7

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

添加EPEL

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

最后重构缓存

yum clean all

yum makecache

其他源

https://mirrors.cnnic.cn/

来源: 雨林博客(www.yl-blog.com)