centos7更改yum源
时间: 2023-06-18 14:07:05 浏览: 124
CentOS更换yum源的方法
5星 · 资源好评率100%
可以通过以下步骤更改 CentOS 7 的 YUM 源:
1.备份原有的 yum 源
```
mv /etc/yum.repos.d/CentOS-Base.repo /etc/yum.repos.d/CentOS-Base.repo.backup
```
2.下载新的 yum 源
```
wget -O /etc/yum.repos.d/CentOS-Base.repo http://mirrors.aliyun.com/repo/Centos-7.repo
```
3.清除缓存
```
yum clean all
```
4.更新 yum 缓存
```
yum makecache
```
完成以上步骤后,你可以使用新的 YUM 源。
阅读全文