Centos7更换yum源
Posted ixuer
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Centos7更换yum源相关的知识,希望对你有一定的参考价值。
更改yum默认repo源(推荐使用阿里云yum源)
# 使用之前请确保已经安装wget,如未安装请执行下面一条命令来安装
yum install -y wget
# 1.备份当前yum源(可选)
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源的主要内容,如果未能解决你的问题,请参考以下文章