zoukankan      html  css  js  c++  java
  • centos6 yum源失效

    ## 近期centos6 官方已经停止维护, 建议升级到centos7 

    我们大部分的服务器还是centos6, 因此需要解决,还好官方默认还维护了vault版本. 

    地址: https://vault.centos.org/6.10/isos/x86_64/

     一键解决脚本:

    curl -o update-centos6yum.sh https://gitee.com/usmile/jenkinslibrary/raw/master/update-centos6yum.sh
    chmod +x update-centos6yum.sh
    ./update-centos6yum.sh

    ## 升级方案

    $ mkdir /etc/yum.repos.d/backup
    $ mv /etc/yum.repos.d/*.repo /etc/yum.repos.d/backup/
    $ cd /etc/yum.repos.d/
    $ vim CentOS-Base.repo
    
    [base]
    name=CentOS-$releasever
    failovermethod=priority
    baseurl=https://vault.centos.org/6.10/os/x86_64/
    gpgcheck=1
    gpgkey=https://vault.centos.org/6.10/os/x86_64/RPM-GPG-KEY-CentOS-6
    
    
    [updates]
    name=CentOS-$releasever
    enabled=1
    failovermethod=priority
    baseurl=https://vault.centos.org/6.10/updates/$basearch/
    gpgcheck=1
    gpgkey=https://vault.centos.org/6.10/os/x86_64/RPM-GPG-KEY-CentOS-6
    
    
    [extras]
    name=CentOS-$releasever
    enabled=1
    failovermethod=priority
    baseurl=https://vault.centos.org/6.10/extras/$basearch/
    gpgcheck=1
    gpgkey=https://vault.centos.org/6.10/os/x86_64/RPM-GPG-KEY-CentOS-6
    
    
    $ vim epel.repo
    
    [epel]
    name=Extra Packages for Enterprise Linux 6 - $basearch
    baseurl=https://archives.fedoraproject.org/pub/archive/epel/6/$basearch
    failovermethod=priority
    enabled=1
    gpgcheck=1
    gpgkey=file:///etc/pki/rpm-gpg/RPM-GPG-KEY-EPEL-6
    
    [epel-debuginfo]
    name=Extra Packages for Enterprise Linux 6 - $basearch - Debug
    baseurl=https://archives.fedoraproject.org/pub/archive/epel/6/$basearch/debug
    failovermethod=priority
    enabled=0
    gpgkey=file:///etc/pki/rpm-gpg/RPM-GPG-KEY-EPEL-6
    gpgcheck=1
    
    [epel-source]
    name=Extra Packages for Enterprise Linux 6 - $basearch - Source
    baseurl=https://archives.fedoraproject.org/pub/archive/epel/6/SRPMS
    failovermethod=priority
    enabled=0
    gpgkey=file:///etc/pki/rpm-gpg/RPM-GPG-KEY-EPEL-6
    gpgcheck=1
  • 相关阅读:
    Object C语法学习
    iOS9的几个新关键字(nonnull、nullable、null_resettable、__null_unspecified)
    系统迭代新功能及第三方技术
    码云&Github 个人代码资源快速查找
    iOS开发应用结构化资源储备
    新增扩展程序功能打包提交新版 WARNING ITMS-90473 警告问题
    NSRect 位置和尺寸
    iOS应用打包完后再在开发者网站添加应用测试ID能够加入测试吗
    苹果原生文字转语音播报
    SiriShortCut模型建立及数据交互逻辑
  • 原文地址:https://www.cnblogs.com/skymyyang/p/14108100.html
Copyright © 2011-2022 走看看