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
    

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

  • 相关阅读:
    java多线程2-总结
    java多线程1-生产者与消费者
    jedis中的两组方法
    理解socket的阻塞
    java设计模式5-命令模式
    我的BIOS
    java设计模式4-装饰者模式
    java设计模式3-单例模式
    android四大组件
    android:theme
  • 原文地址:https://www.cnblogs.com/dowhile/p/a-li-yun-CentOS-jing-xiang-he-EPEL-yuan.html
Copyright © 2011-2022 走看看