CentOS使用yum时出现try other mirror错误时解决方案

此非专业说明,只是提供可能性

尝试两个方案(逐一尝试,直至)

一、更新yum,输入

yum clean all

yum makecache

yum update

二、若不行,可能是因为DNS不稳定吧,因为yum安装时会从三个”repo源“(base,extras,updates)随机获取地址

①编辑网络配置:vi /etc/sysconfig/network-scripts/ifcfg-eth0

在本地网关DNS1下,添加aliyun网关 DNS2=223.5.5.5(可以理解为:将base,updates的“repo源”换为aliyun的)

重启网络服务:service network restart

②上步骤若还不行,请继续以下步骤(换源,可以理解为上一步的plus吧,再将extras换为aliyun的,重在解决,我也不是很了解)

为防止错误,先备份一份:mv /etc/yum.repos.d/CentOS-Base.repo /etc/yum.repos.d/CentOS-Base.repo.backup

CentOS6下:wget -O /etc/yum.repos.d/CentOS-Base.repo http://mirrors.aliyun.com/repo/Centos-6.repo
CentOS7下:wget -O /etc/yum.repos.d/CentOS-Base.repo http://mirrors.aliyun.com/repo/Centos-7.repo

刷新并生成缓存:yum clean all && yum makecache

上一篇:linux系统下载


下一篇:剑指offer:镜像二叉树