1、我们想要更换阿里云的镜像源,先进入/etc/yum.repos.d,先给原本的CentOS-Base。repo做一个备份。
[root@localhost yum.repos.d]# mv CentOS-Base.repo CentOS-Base.repo.backup
2、下载http://mirrors.aliyun.com/repo/选择对应的版本,这里我是centos7.
[root@localhost yum.repos.d]# wget http://mirrors.aliyun.com/repo/Centos-7.repo
3、用阿里云的repo文件替换原文件
[root@localhost yum.repos.d]# mv /etc/yum.repos.d/Centos-7.repo /etc/yum.repos.d/CentOS-Base.repo
4、清空yum缓存,生成yum缓存
[root@localhost yum.repos.d]# yum clean all [root@localhost yum.repos.d]# yum makecache