目录
Yum(全称为 Yellow dog Updater, Modified)是一个在Fedora和RedHat以及CentOS中的Shell前端软件包管理器。基于RPM包管理,能够从指定的服务器自动下载RPM包并且安装,可以自动处理依赖性关系,并且一次安装所有依赖的软件包,无须繁琐地一次次下载、安装。在默认情况之下,国内yum命令下载过慢,采用国内yum更新源是很好的选择。
Yum源变更
以华为镜像源为例进行Yum源变更,但是在此之前备份你的原镜像文件,以免出错后可以恢复备份:
第一步:备份原镜像文件
cp -a /etc/yum.repos.d/CentOS-Base.repo /etc/yum.repos.d/CentOS-Base.repo.bak
第二步:下载新镜像文件
下载新的CentOS-Base.repo文件到/etc/yum.repos.d/目录下
wget -O /etc/yum.repos.d/CentOS-Base.repo https://repo.huaweicloud.com/repository/conf/CentOS-7-reg.repo
第三步:清除原yum缓存
yum clean all
第三步:生成yum缓存
yum makecache # yum repolist all(查看所有配置可以使用的文件,会自动刷新缓存)
国内Yum源
阿里云:http://mirrors.aliyun.com/repo/Centos-7.repo
163: http://mirrors.163.com/.help/CentOS7-Base-163.repo
清华大学:https://mirrors.tuna.tsinghua.edu.cn/help/centos/
浙江大学:http://mirrors.zju.edu.cn/
转载请注明:雪后西塘 » CentOS7更换国内Yum源