CentOS7配置阿里云镜像
2021-12-03 本文已影响0人
阿汤哥_8d27
网络设置
image.png阿里云镜像配置。
step1:备份原始镜像。
mv /etc/yum.repos.d/CentOS-Base.repo /etc/yum.repos.d/CentOS-Base.repo.backup
step2:下载新的 CentOS-Base.repo 到 /etc/yum.repos.d/
wget -O /etc/yum.repos.d/CentOS-Base.repo https://mirrors.aliyun.com/repo/Centos-7.repo
#没有wget命令时使用curl
curl -o /etc/yum.repos.d/CentOS-Base.repo http://mirrors.aliyun.com/repo/Centos-7.repo
step3:更新镜像。
# 清理原缓存。
yum clean all
# 创建新缓存。
yum makecache
参考文档&链接
- [https://blog.csdn.net/NiTesla/article/details/106889943](CentOS7配置阿里云镜像)