Ubuntu

From Hostek.com Wiki
Revision as of 18:45, 4 October 2013 by Davidd (Talk | contribs) (Created page with "This article contains information related to common questions or issues related to Ubuntu VPS servers. ==How to prevent '''sudo''' from prompting for a password== These are ...")

(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to: navigation, search

This article contains information related to common questions or issues related to Ubuntu VPS servers.

How to prevent sudo from prompting for a password

These are instructions to prevent sudo for prompting for a password each time it is used.

Step 1 - Update sudo configuration

To prevent sudo from prompting for a password, you must modify the sudo configuration. You can use the following command to edit the configuration:

sudo visudo

Modify the following line in the configuration:

BEFORE:

%sudo ALL=(ALL:ALL) ALL

AFTER:

%sudo ALL=NOPASSWD: ALL

Save the configuration by entering: CTRL-X, Y


Step 2 - Verify you are a member of the sudo group

In order for this change to work for your user, you must also be a member of the sudo group. Test running a command with sudo. If you are still prompted for a password, then run the following command:

useradd -G sudo YourUsername

(replace 'YourUsername' with your actual username)


Additional Information

Sudo also has the ability to prompt for password on specific commands. See the below documentation for details on advanced sudo configuration.

Ubuntu documentation for sudo:

https://help.ubuntu.com/community/Sudoers


Davidd (talk) 13:45, 4 October 2013 (CDT)