51工具盒子

依楼听风雨
笑看云卷云舒,淡观潮起潮落

centos6配置yum镜像仓库

# centos6配置yum镜像仓库 {#centos6配置yum镜像仓库}

从2020年底开始centos6系统官方停止维护,且官方的yum源将停止服务,所以以后还想在centos6系统上使用yum,那么只能使用第三方镜像仓库。本文提供了若干替代方案。

本文提供了几种镜像仓库的替代方案,按实际情况选择即可。

# 安装阿里云提供的镜像仓库 {#安装阿里云提供的镜像仓库}

curl -o /etc/yum.repos.d/CentOS-Base.repo https://www.xmpan.com/Centos-6-Vault-Aliyun.repo

如果服务器在国外,那么建议改为如下仓库:

# 安装sohu提供的镜像仓库 {#安装sohu提供的镜像仓库}

vi /etc/yum.repos.d/CentOS-Base.repo,内容如下:

[base]
name=CentOS-6
failovermethod=priority
# 这个是官方的源 但是网上感人
# 搜狐源  网速200k左右
baseurl=http://mirrors.sohu.com/centos/6.10/os/x86_64/
gpgcheck=0

# 在海外服务器上安装镜像仓库 {#在海外服务器上安装镜像仓库}

curl -o /etc/yum.repos.d/CentOS-Base.repo https://www.xmpan.com/Centos-6-Vault-Official.repo
赞(4)
未经允许不得转载:工具盒子 » centos6配置yum镜像仓库