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
    

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

  • 相关阅读:
    统计SQL
    记一次惨痛教训
    window ssh 连接 本地虚拟机ubuntu 16
    js undefined 笔记
    java new java.text.SimpleDateFormat("yyyyMM01").format(date)
    java 反射
    mapinfo使用
    EnableAutoConfiguration注解说明
    Eureka Server 代码分析01
    BigDecimal 学习比较
  • 原文地址:https://www.cnblogs.com/dowhile/p/a-li-yun-CentOS-jing-xiang-he-EPEL-yuan.html
Copyright © 2011-2022 走看看