zoukankan      html  css  js  c++  java
  • CentOS 5.11源修改

    CentOS 5.11源

     将源中所有网址替换为

    http://archive.kernel.org/centos-vault/你的版本/
    

      一条sed命令即可解决

    sed -i 's@http://xxx.xx....@http://archive.kernel.org/centos-vault/你的版本/@g' /e  tc/yum.repos.d/Centos-Base.repo
    

      修改后的文件:

    # CentOS-Base.repo
    #
    # The mirror system uses the connecting IP address of the client and the
    # update status of each mirror to pick mirrors that are updated to and
    # geographically close to the client.  You should use this for CentOS updates
    # unless you are manually picking other mirrors.
    #
    # If the mirrorlist= does not work for you, as a fall back you can try the
    # remarked out baseurl= line instead.
    #
    #
    
    [base]
    name=CentOS- - Base
    baseurl=http://archive.kernel.org/centos-vault/5.11/os/x86_64
    #mirrorlist=http://mirrorlist.centos.org/?release=&arch=&repo=os
    gpgcheck=1
    gpgkey=file:///etc/pki/rpm-gpg/RPM-GPG-KEY-CentOS-5
    
    #released updates
    [updates]
    name=CentOS- - Updates
    baseurl=http://archive.kernel.org/centos-vault/5.11/updates/x86_64
    #mirrorlist=http://mirrorlist.centos.org/?release=&arch=&repo=updates
    gpgcheck=1
    gpgkey=file:///etc/pki/rpm-gpg/RPM-GPG-KEY-CentOS-5
    
    #additional packages that may be useful
    [extras]
    name=CentOS- - Extras
    baseurl=http://archive.kernel.org/centos-vault/5.11/extras/x86_64
    #mirrorlist=http://mirrorlist.centos.org/?release=&arch=&repo=extras
    gpgcheck=1
    gpgkey=file:///etc/pki/rpm-gpg/RPM-GPG-KEY-CentOS-5
    
    #packages used/produced in the build but not released
    [addons]
    name=CentOS- - Addons
    baseurl=http://archive.kernel.org/centos-vault/5.11/addons/x86_64
    #mirrorlist=http://mirrorlist.centos.org/?release=&arch=&repo=addons
    gpgcheck=1
    gpgkey=file:///etc/pki/rpm-gpg/RPM-GPG-KEY-CentOS-5
    
    #additional packages that extend functionality of existing packages
    [centosplus]
    name=CentOS- - Plus
    baseurl=http://archive.kernel.org/centos-vault/5.11/centosplus/x86_64
    #mirrorlist=http://mirrorlist.centos.org/?release=&arch=&repo=centosplus
    gpgcheck=1
    enabled=0
    gpgkey=file:///etc/pki/rpm-gpg/RPM-GPG-KEY-CentOS-5
    
    #contrib - packages by Centos Users
    [contrib]
    name=CentOS- - Contrib
    baseurl=http://archive.kernel.org/centos-vault/5.11/contrib/x86_64/
    #mirrorlist=http://mirrorlist.centos.org/?release=&arch=&repo=contrib
    gpgcheck=1
    enabled=0
    gpgkey=file:///etc/pki/rpm-gpg/RPM-GPG-KEY-CentOS-5
    

      

  • 相关阅读:
    let 及const
    ES6与ES2015、ES2016以及ECMAScript的区别
    AMD CMD commonJS es6
    千里之行,始于足下
    学习随笔 pyspark JDBC 操作oracle数据库
    学习随笔--pyspark RDD常用操作
    学习随笔--Spark java开发入门
    学习随笔--flask框架基本搭建
    学习随笔--scrapy爬虫简单实例
    学习随笔-python动态爬取空气质量网数据的实现
  • 原文地址:https://www.cnblogs.com/lcxiao/p/11471478.html
Copyright © 2011-2022 走看看