zoukankan      html  css  js  c++  java
  • 阿里云 CentOS 镜像和 EPEL 源

    配置阿里云网络yum源

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

    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/

    CentOS 5
    
    wget -O /etc/yum.repos.d/CentOS-Base.repo http://mirrors.aliyun.com/repo/Centos-5.repo
    
    CentOS 6
    
    wget -O /etc/yum.repos.d/CentOS-Base.repo http://mirrors.aliyun.com/repo/Centos-6.repo
    
    CentOS 7
    
    wget -O /etc/yum.repos.d/CentOS-Base.repo http://mirrors.aliyun.com/repo/Centos-7.repo
    

    3、之后运行 yum makecache 生成缓存

    配置阿里云epel源

    配置参考:http://mirrors.aliyun.com/help/epel

    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
    
               
    
    epel(RHEL 6)
    
    wget -O /etc/yum.repos.d/epel.repo http://mirrors.aliyun.com/repo/epel-6.repo
    
               
    
    epel(RHEL 5)
    
    wget -O /etc/yum.repos.d/epel.repo http://mirrors.aliyun.com/repo/epel-5.repo
    

    可是万万没想到有时候阿里云或者网易云的镜像源也会出问题。百思不得其解,后来换成了清华的镜像源就给解决问题了。可能有时候选择高校的这些个镜像源可能更稳定一些,因为...

  • 相关阅读:
    推荐随笔
    搭建http服务
    python之numpy和pandas
    eclipse项目打包
    keras安装
    eclipse设置快速提示符
    linux常用命令
    Webpack3 从入门到放弃
    【ES6】Generator+Promise异步编程
    【Vue】删除数组元素,导致剩余元素被重新渲染
  • 原文地址:https://www.cnblogs.com/dowhile/p/a-li-yun-CentOS-jing-xiang-he-EPEL-yuan.html
Copyright © 2011-2022 走看看