centos7更改yum源
Posted TeddyKepler
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了centos7更改yum源相关的知识,希望对你有一定的参考价值。
查看yum源
yum repolist enabled
更换yum源
163yum源
备份当前yun源
cd /etc/yum.repos.d/
cp CentOS-Base.repo CentOS-Base-repo.bak
2. 使用wget下载163yum源repo文件
wget http://mirrors.163.com/.help/CentOS7-Base-163.repo
3. 清理旧的软件源
yum clean all
4. 把下载下来163repo文件设置成为默认源
mv CentOS7-Base-163.repo CentOS-Base.repo
5. 生成163yum源缓存并更新yum源
yum makecache
yum update
阿里云yum源
1. 备份当前yun源
cd /etc/yum.repos.d/
cp CentOS-Base.repo CentOS-Base-repo.bak
2. 使用wget下载阿里云yum源repo文件
wget http://mirrors.aliyun.com/repo/Centos-7.repo
3. 清理旧的软件源
yum clean all
4. 把下载下来阿里云repo文件设置成为默认源
mv Centos-7.repo CentOS-Base.repo
5. 生成阿里云yum源缓存并更新yum源
yum makecache
yum update
以上是关于centos7更改yum源的主要内容,如果未能解决你的问题,请参考以下文章