Centos7 更换为网易YUM源
时间:2019-11-23 00:40 来源:linux.it.net.cn 作者:IT
-
备份当前的 yum 源
# yum 源在目录 /etc/yum.repos.d/ 下
$ cd /etc/yum.repos.d/
$ cp CentOS-Base.repo CentOS-Base.repo_bak
-
查看当前的版本然后去网易 centos 镜像下载 repo 包
$ cat /etc/redhat-release
# 我的是 7.5 的本地虚拟机
CentOS Linux release 7.5.1804 (Core)
# 我这里没有 yum 环境所以我只能使用 curl作为下载工具 [-O 要大写]
$ curl -O http://mirrors.163.com/.help/CentOS7-Base-163.repo
# 修改下载的 CentOS7-Base-163.repo 名称为 CentOS7-Base.repo
$ mv CentOS7-Base-163.repo CentOS-Base.repo
mv:是否覆盖"CentOS-Base.repo"? Y
-
重新生成缓存
yum clean all
yum makecache
-
测试一下
$ yum repolist
# 这里展示的 163.com,所以我成功了。
已加载插件:fastestmirror
Loading mirror speeds from cached hostfile
源标识 源名称 状态
base/7/x86_64 CentOS-7 - Base - 163.com 10,019
extras/7/x86_64 CentOS-7 - Extras - 163.com 409
updates/7/x86_64 CentOS-7 - Updates - 163.com 2,076
repolist: 12,504
(责任编辑:IT)
(责任编辑:IT) |