linux 添加新用户并赋予sudo执行权限
2013-10-24 14:44:35 来源:WEB开发网核心提示: 1、添加新用户adduser xyw-Eliot2、设置密码passwd xyw-Eliot根据提示输入3次密码在使用sudo命令的时候,会提示:sudo:must be setuid root 错误,linux 添加新用户并赋予sudo执行权限,就是无法使用sudo命令,解决方法:使用su ,找到"roo
1、添加新用户
adduser xyw-Eliot
2、设置密码
passwd xyw-Eliot
根据提示输入3次密码
在使用sudo命令的时候,会提示:sudo:must be setuid root 错误,就是无法使用sudo命令,解决方法:
使用su ,进入root用户下,执行:
chown root:root /usr/bin/sudo
chmod /usr/bin/sudo
再次使用sudo命令,发现提示:xyw-Eliot is not in the sudoers file. This incident will be reported.说明xyw-Eliot还是没有权限使用sudo,解决方法:
1)输入su,进入root模式。
2)添加写文件权限:chmod u+w /etc/sudoers
3)编辑文件 /etc/sudoers,即 vim chmod u+w /etc/sudoers,找到"root ALL=(ALL) ALL"这行,在下面添加:xyw-Eliot ALL=(ALL) ALL
根据实际情况将xyw-Eliot换成你的用户名。保存退出。
4)撤销写文件权限:chmod u-w /etc/sudoers
- ››linux下两台服务器文件实时同步方案设计和实现
- ››Linux文件描述符中的close on exec标志位
- ››Linux下管道使用的一些限制
- ››Linux 误删/usr/bin 解决方法
- ››linux 添加新用户并赋予sudo执行权限
- ››linux常用软件安装方法
- ››Linux的分区已经被你从Windows中删除,系统启动后...
- ››linux enable命令大全
- ››Linux实现基于Loopback的NVI(NAT Virtual Interfa...
- ››Linux远程访问windows时,出现"连接被对端重...
- ››linux中使用head命令和tail命令查看文件中的指定行...
- ››linux swap 分区调控(swap分区 lvm管理)
赞助商链接