centos7 更换国内yum源
时间: 2023-08-07 21:03:07 浏览: 194
CentOS更换yum源的方法
5星 · 资源好评率100%
您可以按照以下步骤更换CentOS 7的国内yum源:
1. 备份原有的yum源配置文件:
```shell
sudo cp /etc/yum.repos.d/CentOS-Base.repo /etc/yum.repos.d/CentOS-Base.repo.bak
```
2. 下载新的yum源配置文件:
```shell
sudo curl -o /etc/yum.repos.d/CentOS-Base.repo http://mirrors.aliyun.com/repo/Centos-7.repo
```
3. 清除yum缓存:
```shell
sudo yum clean all
```
4. 生成新的缓存:
```shell
sudo yum makecache
```
现在您的CentOS 7系统已经成功更换为国内的yum源了。
阅读全文