sudo: unable to change to root gid: Operation not permitted
Posted 慢漫曼蔓
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了sudo: unable to change to root gid: Operation not permitted相关的知识,希望对你有一定的参考价值。
出现这个问题可能是使用了游客登录
将guest游客切换为普通用户
切换方法:
sudo 出现unable to resolve host 解决方法
inux 环境, 假设这台机器名字叫dev(机器的hostname), 每次执行sudo 就出现这个警告讯息:
sudo: unable to resolve host dev
虽然sudo 还是可以正常执行, 但是警告讯息每次出来还是有点烦人, 而这只是机器在反解上的问题, 所以就直接从/etc/hosts 设定, 让dev(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 dev
# 或改成下面这两行
#127.0.0.1 localhost
#127.0.0.1 dev
这样设完后, 使用sudo 就不会再有那个错误讯息啰~ :)
以上是关于sudo: unable to change to root gid: Operation not permitted的主要内容,如果未能解决你的问题,请参考以下文章
sudo: unable to resolve host 枝桠
Ubuntu sudo 出现unable to resolve host 解决方法
Ubuntu sudo 出现unable to resolve host 解决方法
sudo 出现unable to resolve host hostname 解决方法