Difference between revisions of "Making your DW user a sudo account"
From Dreamwidth Notes
Foxfirefey (Talk | contribs) (making a guide for DW sudo user) |
Foxfirefey (Talk | contribs) (better instructions) |
||
Line 1: | Line 1: | ||
− | + | In recent versions of Ubuntu, this command given in [[Dreamwidth Scratch Installation]] doesn't work automatically: | |
usermod -a -G sudo <i>username</i> | usermod -a -G sudo <i>username</i> | ||
Line 7: | Line 7: | ||
dw is not in the sudoers file. This incident will be reported. | dw is not in the sudoers file. This incident will be reported. | ||
− | To | + | To fix this, edit the <tt>/etc/sudoers</code> file with your root user and uncomment this line (take off the leading #): |
− | + | %sudo ALL=NOPASSWD: ALL | |
− | + | You can also edit the <tt>/etc/sudoers</tt> file and add a line specific to dw instead, depending on which behaviour you want. | |
− | If you do want to enter your password during < | + | If you don't want to enter your password during <tt>sudo</tt> commands, use: |
+ | |||
+ | dw ALL = NOPASSWD: ALL | ||
+ | |||
+ | If you do want to enter your password during <tt>sudo</tt> commands, use: | ||
dw ALL = (ALL) ALL | dw ALL = (ALL) ALL | ||
[[Category: Dreamwidth Installation]] | [[Category: Dreamwidth Installation]] |
Revision as of 18:01, 15 March 2009
In recent versions of Ubuntu, this command given in Dreamwidth Scratch Installation doesn't work automatically:
usermod -a -G sudo username
When this happens, trying to use sudo as the dw user can give you this error:
dw is not in the sudoers file. This incident will be reported.
To fix this, edit the /etc/sudoers</code> file with your root user and uncomment this line (take off the leading #):
%sudo ALL=NOPASSWD: ALL
You can also edit the <tt>/etc/sudoers file and add a line specific to dw instead, depending on which behaviour you want.
If you don't want to enter your password during sudo commands, use:
dw ALL = NOPASSWD: ALL
If you do want to enter your password during sudo commands, use:
dw ALL = (ALL) ALL