一、验证网络是否可以连接阿里云镜像
# 验证网络是否可以连接阿里云镜像
ping mirrors.aliyun.com
二、 手动配置
1、删除原yum源
cd /etc/yum.repos.d
# 删除原yum源
rm -rf /etc/yum.repos.d/*
2、下载阿里云Centos-7.repo文件
# wget命令下载: wget [options] [url]
wget -O /etc/yum.repos.d/CentOS-Base.repo http://mirrors.aliyun.com/repo/Centos-7.repo
# curl命令下载: curl [options] [url]
curl -o /etc/yum.repos.d/CentOS-Base.repo http://mirrors.aliyun.com/repo/Centos-7.repo
文章来源:https://www.toymoban.com/news/detail-604572.html
3、清除及生成缓存
# 清除yum缓存
yum clean all
# 缓存阿里云镜像
yum makecache
4、查看yum源信息,已经更换为了阿里云镜像源
yum repolist
文章来源地址https://www.toymoban.com/news/detail-604572.html
到了这里,关于Linux设置yum源为阿里云镜像源 一、验证网络是否可以连接阿里云镜像的文章就介绍完了。如果您还想了解更多内容,请在右上角搜索TOY模板网以前的文章或继续浏览下面的相关文章,希望大家以后多多支持TOY模板网!