普通视图

发现新文章,点击刷新页面。
昨天以前首页

Centos 7配置镜像源

作者 sunnywolf
2024年10月29日 22:57

一、开启虚拟机,备份原来的镜像源

mv /etc/yum.repos.d/CentOS-Base.repo /etc/yum.repos.d/CentOS-Base.repo.backup

二、下载新的阿里镜像到yum.repos.d下

curl -o /etc/yum.repos.d/CentOS-Base.repo https://mirrors.aliyun.com/repo/Centos-7.repo

三、使用下面命令生成缓存

yum clean all

yum makecache

执行完毕后就配置成功。

 

❌
❌