centos安装清华镜像源
时间: 2024-01-25 18:12:20 浏览: 110
CentOS系统镜像源-阿里云、清华大学镜像源、epel镜像源
以下是在CentOS系统中安装清华镜像源的步骤:
1. 打开终端,以root用户身份登录。
2. 备份原有的yum源配置文件,以防止出现问题:
```shell
cp /etc/yum.repos.d/CentOS-Base.repo /etc/yum.repos.d/CentOS-Base.repo.bak
```
3. 下载清华镜像源的配置文件:
```shell
wget -O /etc/yum.repos.d/CentOS-Base.repo https://mirrors.tuna.tsinghua.edu.cn/help/centos/
```
4. 清除yum缓存:
```shell
yum clean all
```
5. 生成新的yum缓存:
```shell
yum makecache
```
现在,您的CentOS系统已经成功安装了清华镜像源。
阅读全文