yum仓库配置为清华源
时间: 2024-01-14 16:12:25 浏览: 80
yum仓库配置
以下是将 yum 仓库配置为清华源的步骤:
1. 备份当前的 yum 源配置文件:
```bash
sudo cp /etc/yum.repos.d/CentOS-Base.repo /etc/yum.repos.d/CentOS-Base.repo.backup
```
2. 下载清华源的 CentOS-Base.repo 文件:
```bash
sudo wget -O /etc/yum.repos.d/CentOS-Base.repo http://mirrors.tuna.tsinghua.edu.cn/help/centos/?action=download&filename=centos7.repo
```
3. 清除缓存并更新 yum 源:
```bash
sudo yum clean all
sudo yum makecache
```
现在你已经成功将 yum 仓库配置为清华源了。
阅读全文