-
Passwordless sudo setup
If you want to give permissions to some users who are in a special group (probably sudo) to use sudo without asking password, you can do this simple in two steps:
First of all, you must add related users to group sudo. For example we can add bob to group sudo:
adduser bob sudoAnd after that type visudo command and add or comment out following line:
%sudo ALL=NOPASSWD: ALLIt says that password not required for the users who are in group of sudo.
links for 2010-10-08
October 9, 2010 by Philologus


