当我尝试将网页加载到终端时,它给出了curl: (6) Could not resolve host错误。
curl: (6) Could not resolve host
我的PC上有互联网,并尝试通过家庭互联网连接。因此,我这里没有任何代理人参与。
[root@localhost kevin]# curl http://google.com curl: (6) Could not resolve host: google.com; Name or service not known
clean all 并再次尝试,但并不幸运。
clean all
但是,如果我使用IP代替域名,则可以正常工作。
[root@localhost kevin]# curl http://173.194.46.0
有什么线索吗?
问题是:
这是我的解决方法:
IPV6禁用
su
cd /etc/modprobe.d/
/etc/modprobe.d/
vi disableipv6.conf
Esc + i
install ipv6 /bin/true
Esc + :
wq
reboot
lsmod | grep ipv6
添加Google DNS服务器
cat /etc/resolv.conf
8.8.8.8
8.8.4.4
vi /etc/resolv.conf
resolv.conf
名称服务器8.8.8.8 名称服务器8.8.4.4
-键入Esc + :,然后wq保存并退出
这是我关于此的博客文章:http : //codeketchup.blogspot.sg/2014/07/how-to- fix-curl-6-could-not-resolve.html