• 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
    

      

  • 相关阅读:
    Postgresql10离线安装
    Clickhouse集群安装部署
    Clickhouse建表语法、视图语法、数据表DDL(数据定义语言)、数据DML(数据操作语言)
    Clickhouse基础语法、数据类型、数据表引擎学习
    Spring4.0+Mybatis整合时占位符无法读取jdbc.properties的问题
    Code: 210. DB::NetException: Connection refused (localhost:9000)
    使用Jdbc的方式连接Clickhouse列式数据库
    Dbeaver连接不上远程服务器部署的Clickhouse问题
    Clickhouse入门学习、单机、集群安装部署
    Another Redis DeskTop Manage一款免费的Redis可视化工具
  • 原文地址:https://www.cnblogs.com/lcxiao/p/11471478.html
Copyright © 2020-2023  润新知