使用阿里云开源镜像配置(centos、EPEL)

阿里云开源镜像地址:http://mirrors.aliyun.com

一、CentOS 7

  1. 备份:
    mv /etc/yum.repos.d/CentOS-Base.repo /etc/yum.repos.d/CentOS-Base.repo.backup
  2. 下载新的CentOS-Base.repo 到/etc/yum.repos.d/
    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
  3. 之后运行生成缓存: yum makecache

二、EPEL

  1. 备份(如有配置其他epel源)    
    mv /etc/yum.repos.d/epel.repo /etc/yum.repos.d/epel.repo.backup
    mv /etc/yum.repos.d/epel-testing.repo /etc/yum.repos.d/epel-testing.repo.backup

  2. 下载新repo 到/etc/yum.repos.d/
    epel(RHEL 7)
    wget -O /etc/yum.repos.d/epel.repo http://mirrors.aliyun.com/repo/epel-7.repo
  3. 之后运行生成缓存: yum makecache

其他可以参考 打开阿里云开源镜像网站的查看帮助。


你可能感兴趣的:(linux)