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

posted @ 2014-05-29 11:47  KoMiles  阅读(25353)  评论(0编辑  收藏  举报