centos7配置清华yum源
时间: 2023-10-10 21:11:29 浏览: 341
RedHat本地yum源配置及国内镜像源配置.docx
以下是在CentOS 7上配置清华yum源的步骤:
1.备份原有的yum源
```shell
sudo mv /etc/yum.repos.d/CentOS-Base.repo /etc/yum.repos.d/CentOS-Base.repo.bak
```
2.下载清华yum源
```shell
sudo wget -O /etc/yum.repos.d/CentOS-Base.repo https://mirrors.tuna.tsinghua.edu.cn/help/centos/
```
3.更新yum缓存
```shell
sudo yum clean all
sudo yum makecache
```
4.测试yum源是否配置成功
```shell
sudo yum update
```
如果更新成功,那么你已经成功配置了清华yum源。
另外,如果你需要安装EPEL源,可以通过以下命令进行安装:
```shell
sudo yum install epel-release
```
然后,更新yum缓存:
```shell
sudo yum makecache
```
这样,你就可以使用清华的EPEL源了。
阅读全文