centos6 配置yum源
时间: 2024-02-10 09:07:18 浏览: 104
Centos6配置yum源文件.zip
以下是CentOS6配置YUM源的步骤:
1.备份原有的yum源配置文件
```shell
cp /etc/yum.repos.d/CentOS-Base.repo /etc/yum.repos.d/CentOS-Base.repo.backup
```
2.下载新的yum源配置文件
```shell
wget -O /etc/yum.repos.d/CentOS-Base.repo http://mirrors.aliyun.com/repo/Centos-6.repo
```
3.清除yum缓存
```shell
yum clean all
```
4.生成yum缓存
```shell
yum makecache
```
以上是CentOS6配置YUM源的步骤,如果您需要使用其他的YUM源,只需要将第2步中的URL替换为您需要使用的YUM源的URL即可。
阅读全文