sudo 出现unable to resolve host 解决方法

简介:

http://blog.csdn.net/ichuzhen/article/details/8241847Ubuntu环境, 假设这台机器名字叫abc(机器的hostname), 每次执行sudo 就出现这个警告讯息:
sudo: unable to resolve host abc
虽然sudo 还是可以正常执行, 但是警告讯息每次都出来,而这只是机器在反解上的问题, 所以就直接从/etc/hosts 设定, 让abc(hostname) 可以解回127.0.0.1 的IP 即可.

/etc/hosts 原始内容

          127.0.0.1       localhost

          # The following lines are desirable for IPv6 capable hosts 

          ::1     localhost ip6-localhost ip6-loopback ip6-loopback

         fe00::0 ip6-localnet 
         ff00::0 ip6-mcastprefix 
         ff02::1 ip6-allnodes
         ff02::2 ip6-allrouters 

         ff02::3 ip6-allhosts  

 

         在127.0.0.1 localhost 后面加上主机名称(hostname) 即可, /etc/hosts 内容修改成如下:

127.0.0.1       localhost abc  #要保证这个名字与 /etc/hostname中的主机名一致才有效
# 或改成下面这两行 
#127.0.0.1       localhost 

#127.0.0.1       abc

这样设完后, 使用sudo 就不会再有那个提示信息了。



本文转自wanqi博客园博客,原文链接:http://www.cnblogs.com/wanqieddy/p/5160547.html,如需转载请自行联系原作者



相关文章
|
5月前
|
域名解析 缓存 监控
安装zabbix时报错Could not resolve host: mirrors.huaweicloud.com;Unknown error解决办法
安装zabbix时报错Could not resolve host: mirrors.huaweicloud.com;Unknown error解决办法
|
6月前
|
网络安全
ssh: Could not resolve hostname centos02: Temporary failure in name resolution
ssh: Could not resolve hostname centos02: Temporary failure in name resolution
477 0
|
开发工具 git
fatal: unable to access ‘https://github.com/.../.git‘: Could not resolve host: github.com解决方法【亲测有效】
1.问题原因 今天在使用Github的时候突然出现了这样的报错,云里雾里,看了网上的解决办法,说是代理服务器的问题,尝试了无数遍无果 然后Ping了一下github网站,发现Ping不通:
1747 0
|
网络协议
出现“Could not resolve host: www.github.com; Unknown error”错误解决
出现“Could not resolve host: www.github.com; Unknown error”错误解决
596 0
|
缓存
Centos8使用yum报错 Couldn‘t resolve host name for http://mirrorlist.centos.org/?releas
Centos8使用yum报错 Couldn‘t resolve host name for http://mirrorlist.centos.org/?releas
1756 0
|
域名解析 Kubernetes 开发工具
执行yum install ntpdate ‐y报错Could not resolve host: download.example; 未知的名称或服务
执行yum install ntpdate ‐y报错Could not resolve host: download.example; 未知的名称或服务
782 0
|
Android开发
INSTALL_FAILED_TEST_ONLY的解决办法
INSTALL_FAILED_TEST_ONLY的解决办法
236 0
sudo unable to resolve host错误
sudo unable to resolve host错误
157 0