Linux中yum命令镜像源出错解决方案

好头疼,最近虚拟机中的linux系统一直不能安装东西,只要install就报找不到可用的链接源。。。但是要安装东西啊,所以就着手解决下。

解决方法:更换源

1.备份

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

2.下载新的CentOS-Base.repo 到/etc/yum.repos.d/​

   CentOS5:
  wget -O /etc/yum.repos.d/CentOS-Base.repo http://mirrors.aliyun.com/repo/Centos-5.repo
 
  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

3.生成缓存

 yum makecache

注意:

如果更换完源可能出现以下错误:

 [Errno 14] PYCURL ERROR 22 - "The requested URL returned error: 404 Not Found" Trying other mirror.
 [Errno 14] PYCURL ERROR 7 - "couldn't connect to host" Trying other mirror.
 [Errno 256] No more mirrors to try. 

解决方法:

 yum clean all
 rpm --rebuilddb

至此,找不到镜像的问题就迎刃而解了。。。如果还有其他问题,留言交流。。。

http://www.cnblogs.com/evilkind/p/6560107.html

你可能感兴趣的:(Linux)