Yum阿里镜像

备份

[root@**** ~]# cd /etc/yum.repos.d/
[root@**** yum.repos.d]# ll
total 8
-rw-r--r-- 1 root root 675 Jan 14 22:55 CentOS-Base.repo
-rw-r--r-- 1 root root 230 Jan 14 22:55 epel.repo
[root@**** yum.repos.d]# mv CentOS-Base.repo CentOS-Base.repo.bak
[root@**** yum.repos.d]# mv epel.repo epel.repo.bak

下载仓库地址

注:笔者的系统是CentOS7

[root@**** yum.repos.d]# wget -O CentOS-Base.repo http://mirrors.aliyun.com/repo/Centos-7.repo
[root@**** yum.repos.d]# wget -O epel.repo http://mirrors.aliyun.com/repo/epel-7.repo

刷新缓存

[root@**** yum.repos.d]# yum clean all
[root@**** yum.repos.d]# yum makecache

你可能感兴趣的:(Yum阿里镜像)