最近在安裝MySQL的rpm包時,出現了一個問題,
當使用命令:
vim ./resolv.conf
時出現以下錯誤:
Loading mirror speeds from cached hostfile
Could not retrieve mirrorlist http://mirrorlist.centos.org/?release=6&arch=i386&repo=os error was
14: PYCURL ERROR 6 - "Couldn't resolve host 'mirrorlist.centos.org'"
Error: Cannot find a valid baseurl for repo: base
解決方法如下(修改dns配置)
vi /etc/resolv.conf
在此文件最后加入:nameserver 8.8.8.8
如果沒有vi編輯器可用:
echo "nameserver 8.8.8.8" >>/etc/resolv.conf
然后ping www.baidu.com
可以ping通,不會再出現unknow host
ok,安裝依賴,
yum install ld-linux.so.2
最后出現compelete即可