出现sudo vi test.c 返回错误提示如下
sudo: /usr/bin/sudo must be owned by uid 0 and have the setuid bit set
解决办法首先切换至root模式,然后设置如下权限
chown root:root /usr/bin/sudo chmod 4755 /usr/bin/sudochmod 4755 /usr/lib/sudo/sudoer.so 然后赋予其他用户各种合适的权限
出现sudo vi test.c 返回错误提示如下
sudo: /usr/bin/sudo must be owned by uid 0 and have the setuid bit set
解决办法首先切换至root模式,然后设置如下权限
chown root:root /usr/bin/sudo chmod 4755 /usr/bin/sudochmod 4755 /usr/lib/sudo/sudoer.so 然后赋予其他用户各种合适的权限
举报