首页 > 代码库 > Centos6.5用yum源报错

Centos6.5用yum源报错

当安装Centos系统之后,使用yum原时出以下错误:

Could not retrieve mirrorlist http://mirrorlist.centos.org/?release=5&arch=x86_64&repo=addons error was

原因是找不到镜像的问题,DNS服务器没有配置好。

#vi /etc/resolv.conf

Nameserver 192.168.200.1  //校园Dns

Nameserver  8.8.8.8 //谷歌域名服务器,使用其他源的时候,都正常解析域名了   

Nameserver 8.8.4.4 //谷歌域名

保存退出

最后:#servicenetwork restart

 

另外一种方法比较麻烦:

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

# wget http://mirrors.163.com/.help/CentOS6-Base-163.repo   //wget没有安装的时候,只有通过U盘把源复制到系统

# mv CentOS6-Base-163.repo/etc/yum.repos.d/CentOS6-Base-163.repo

# yum makecache

 

建设采用第一种方法之后再采用第二种方法更改到对应的yum源,以后执行效率更高。


本文出自 “运维” 博客,请务必保留此出处http://sky9896.blog.51cto.com/2330653/1571743

Centos6.5用yum源报错