Debian普通用户添加sudo权限

转自:http://chenpeng.info/html/964

刚安装好的Debian默认还没有sudo功能。
1、安装sudo
# apt-get install sudo
2、修改 /etc/sudoers 文件属性为可写
# chmod +w /etc/sudoers
3、编辑 /etc/sudoers ,添加如下行
# 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 文件属性为只读
# chmod -w /etc/sudoers

原文地址:https://www.cnblogs.com/wangkongming/p/3758759.html