1、Debian默认没有sudo功能,因此需要自己安装:# apt-get install sudo
2、# chmod +w /etc/sudoers
3、# vim /etc/sudoers
,添加如下行
root ALL=(ALL:ALL) ALL
toney ALL=(ALL:ALL) ALL # 用户user执行sudo时需要密码。
#toney ALL=NOPASSWD:ALL # 用户user执行sudo时不需要密码。
#toney ALL=NOPASSWD:/etc/network/interfaces # 用户user执行只有sudo执行/etc/network/interfaces的权限,执行时不需要密码。
4、# chmod -w /etc/sudoers