Debian普通用户添加sudo权限

刚安装好的Debian默认还没有sudo功能。
1、安装sudo

root@host# apt-get install sudo

2、修改 /etc/sudoers 文件属性为可写

root@host# chmod +w /etc/sudoers

3、编辑 /etc/sudoers ,添加如下行

root@host# vim /etc/sudoers
root ALL=(ALL) ALL
user ALL=(ALL) ALL 用户user执行sudo时需要密码。
#user ALL=NOPASSWD:ALL 用户user执行sudo时不需要密码。
#user ALL=NOPASSWD:/etc/network/interfaces 用户user执行只有sudo执行/etc/network/interfaces的权限,执行时不需要密码。

4、修改/etc/sudoers 文件属性为只读

root@host# chmod -w /etc/sudoers

发表评论