美文网首页
CentOS更改yum源

CentOS更改yum源

作者: f109 | 来源:发表于2020-05-04 09:13 被阅读0次

1.备份现有的源

mv /etc/yum.repos.d /etc/yum.repos.d.backup

2.设置新的yun目录

mkdir /etc/yum.repos.d

3.安装wget

yum install -y wget

4.根据系统版本选择镜像源

##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

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

5.清除文件并重建元数据缓存

yum clean all
yun makecache

6.更新软件包

yum update -y

完成!

相关文章

网友评论

      本文标题:CentOS更改yum源

      本文链接:https://www.haomeiwen.com/subject/xlxeghtx.html