更换centos7yum源
时间: 2023-10-07 19:09:02 浏览: 182
Centos7更换yum源.txt
5星 · 资源好评率100%
以下是更换 CentOS 7 yum 源的步骤:
1.备份原有的 yum 源
```
mkdir /etc/yum.repos.d/backup
mv /etc/yum.repos.d/*.repo /etc/yum.repos.d/backup
```
2.下载新的 yum 源文件
阿里云:
```
wget -O /etc/yum.repos.d/CentOS-Base.repo http://mirrors.aliyun.com/repo/Centos-7.repo
```
清华大学:
```
wget -O /etc/yum.repos.d/CentOS-Base.repo http://mirrors.tuna.tsinghua.edu.cn/repo/centos-7.repo
```
3.清除缓存
```
yum clean all
```
4.生成缓存
```
yum makecache
```
5.更新系统
```
yum update
```
注意:更换 yum 源可能会导致某些软件包无法安装或者更新,因此建议在测试环境下进行操作。
阅读全文