centos8更换阿里源

头像
码农笔录
2020-10-21 运维 阅读量 13484

1.如果是minimal安装,需要先安装wget


yum install -y wget

2.备份旧的配置文件


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

3.下载阿里的源文件


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

4.如果你不是阿里云的服务器,例如自己电脑安装或者虚拟机安装,需要修改地址


sed -i -e '/mirrors.cloud.aliyuncs.com/d' -e '/mirrors.aliyuncs.com/d' /etc/yum.repos.d/CentOS-Base.repo

5.生成缓存


 yum makecache