centos6可用yum源repo
微wx笑
2022-05-02【运维日志】
132
2
0关键字:
centos6 yum repo
前段时间由于业务需求,需要在centos6.5的操作系统上部署,但是由于centos6.x已经停止更新和维护了,市面上的repo源已经基本不能再用了,找了很久,终于找到了清华大学的repo,亲测可用(20210107),后期还能不能继续使用,尚未可知。大家可以试试~死马当活马医~~
前段时间由于业务需求,需要在centos6.5的操作系统上部署,但是由于centos6.x已经停止更新和维护了,市面上的repo源已经基本不能再用了,找了很久,终于找到了清华大学的repo,亲测可用(20210107),后期还能不能继续使用,尚未可知。大家可以试试~死马当活马医~~
点击下载:CentOS-Base6.rar
此文件内容罗列在下方,也可以直接复制到服务器现有repo中替换:
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 | # 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-$releasever - Base baseurl=https: //mirrors .tuna.tsinghua.edu.cn /centos-vault/centos/ $releasever /os/ $basearch/ #mirrorlist=http://mirrorlist.centos.org/?release=$releasever&arch=$basearch&repo=os enabled=1 gpgcheck=0 gpgkey= file : ///etc/pki/rpm-gpg/RPM-GPG-KEY-6 #released updates [updates] name=CentOS-$releasever - Updates baseurl=https: //mirrors .tuna.tsinghua.edu.cn /centos-vault/centos/ $releasever /updates/ $basearch/ #mirrorlist=http://mirrorlist.centos.org/?release=$releasever&arch=$basearch&repo=updates enabled=1 gpgcheck=0 gpgkey= file : ///etc/pki/rpm-gpg/RPM-GPG-KEY-6 #additional packages that may be useful [extras] name=CentOS-$releasever - Extras baseurl=https: //mirrors .tuna.tsinghua.edu.cn /centos-vault/centos/ $releasever /extras/ $basearch/ #mirrorlist=http://mirrorlist.centos.org/?release=$releasever&arch=$basearch&repo=extras enabled=1 gpgcheck=0 gpgkey= file : ///etc/pki/rpm-gpg/RPM-GPG-KEY-6 #additional packages that extend functionality of existing packages [centosplus] name=CentOS-$releasever - Plus baseurl=https: //mirrors .tuna.tsinghua.edu.cn /centos-vault/centos/ $releasever /centosplus/ $basearch/ #mirrorlist=http://mirrorlist.centos.org/?release=$releasever&arch=$basearch&repo=centosplus gpgcheck=0 enabled=0 gpgkey= file : ///etc/pki/rpm-gpg/RPM-GPG-KEY-6 #contrib - packages by Centos Users [contrib] name=CentOS-$releasever - Contrib baseurl=https: //mirrors .tuna.tsinghua.edu.cn /centos-vault/centos/ $releasever /contrib/ $basearch/ #mirrorlist=http://mirrorlist.centos.org/?release=$releasever&arch=$basearch&repo=contrib gpgcheck=0 enabled=0 gpgkey= file : ///etc/pki/rpm-gpg/RPM-GPG-KEY-6 |
更新完成后,执行下面的命令进行元数据缓存刷新:
1 2 | yum clean all yum makecache |
注意,以上内容为转载自:https://www.fcblog.cn/post/60.html
我遇到的问题是只修改“CentOS-Base.repo”一个文件是不行的,还需要修改“epel.repo”
修改方法
进入目录
1 | cd /etc/yum .repos.d/ |
备份文件
1 2 | mv CentOS-Base.repo CentOS-Base.repo.bak mv epel.repo epel.repo.bak |
创建新的 CentOS-Base.repo
1 | vi CentOS-Base.repo |
把上面的 CentOS-Base.repo 文件内容粘贴进去,保存
先按Esc键,再按冒号(Shift+:),然后输入“wq”,按回车。
同样的方法处理“epel.repo”,文件内容如下:
1 2 3 4 5 6 7 | [base] name=CentOS-$releasever - Base baseurl=https: //mirrors .tuna.tsinghua.edu.cn /centos-vault/centos/ $releasever /os/ $basearch/ #mirrorlist=http://mirrorlist.centos.org/?release=$releasever&arch=$basearch&repo=os enabled=1 gpgcheck=0 gpgkey= file : ///etc/pki/rpm-gpg/RPM-GPG-KEY-6 |
本文由 微wx笑 创作,采用 署名-非商业性使用-相同方式共享 4.0 许可协议,转载请附上原文出处链接及本声明。
原文链接:https://www.ivu4e.cn/blog/service/2022-05-02/1175.html