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
    

      

  • 相关阅读:
    使用 Spring + CXF 发布 REST 服务
    在web项目中使用CXF暴露REST服务
    学习SpringMVC——从HelloWorld开始
    java.lang.ClassNotFoundException: org.springframework.web.servlet.DispatcherServlet
    安装maven时JAVA_HOME的配置小问题
    java 接口的实现和继承关系
    servlet的两种配置方式
    C# MainWindowHandle为0的解决方法
    C# WindowsMediaPlayer 的一些用法
    C# 获取MP3信息
  • 原文地址:https://www.cnblogs.com/lcxiao/p/11471478.html
Copyright © 2011-2022 走看看