CentOS更新yum源2018-11-12


首先我们要对源进行备份

输入以下命令:

mv/etc/yum.repos.d/CentOS-Base.repo /etc/yum.repos.d/CentOS-Base.repo.backup 

接下来我们用cd命令进入/etc/yum.repos.d/目录下

可以看到我们现在已经在yum.repos.d 目录下

下面我们就可以对源进行更新

CentOS 5

wget -O /etc/yum.repos.d/CentOS-Base.repo http://mirrors.aliyun.com/repo/Centos-5.repo

CentOS 6

wget -O /etc/yum.repos.d/CentOS-Base.repo http://mirrors.aliyun.com/repo/Centos-6.repo

CentOS 7

wget -O /etc/yum.repos.d/CentOS-Base.repo http://mirrors.aliyun.com/repo/Centos-7.repo

根据您的情况选择合适的源

接下来我们还需要生成yum缓存

输入命令

yum clean all

yum makecache

大功告成!

作者:高鹏举