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
    

      

  • 相关阅读:
    Lock“锁定”语句(C# 参考)
    单件模式(Singleton Pattern)[转]
    mysql中insert into和replace into以及insert ignore用法区别[转]
    CSS优先级、继承
    Silverlight不错的小游戏
    smarty?所有IE都不正常?
    CSS截字对比
    li元素内部浮动后,li的高度不正常
    使IE8强行使用IE7渲染网页的头部代码
    Silverlight?
  • 原文地址:https://www.cnblogs.com/lcxiao/p/11471478.html
Copyright © 2011-2022 走看看