美文网首页让前端飞Web前端之路前端开发
Ubuntu 报错 sudo:unable to resolve

Ubuntu 报错 sudo:unable to resolve

作者: 尤小小 | 来源:发表于2019-06-03 15:54 被阅读3次

Mac 下使用终端连接阿里云的ECS Ubuntu实例执行命令

sudo ufw status

提示:

sudo: unable to resolve host iZhp3gkl4qp34uy3mvpndyZ

基本上使用sudo开头的命令就会提示该信息

解决方案如下:

需要修改 /etc/hosts文件:

sudo vi /etc/hosts

127.0.0.1 localhost

下添加一条code

127.0.0.1 iZhp3gkl4qp34uy3mvpndyZ

iZhp3gkl4qp34uy3mvpndyZ换成自己的对应的主机名,也就是提示信息‘unable to resolve host’后面的部分。

hostnameset.jpg

相关文章

网友评论

    本文标题:Ubuntu 报错 sudo:unable to resolve

    本文链接:https://www.haomeiwen.com/subject/tcwcxctx.html