1026

After I add a user using adduser, I can't see it via System > Administration > Users and Groups unless I log out and then log in again. Is that normal?

Also, can I set a newly added user as a sudoer or do I have to change that only after adding it? How can I do that via the shell?

Finally, can I delete the original user that was created upon initial installation of Ubuntu, or is this user somehow 'special'?

C-Y
  • 105
David B
  • 11,632

7 Answers7

1244

Just add the user to the sudo group:

sudo adduser <username> sudo

The change will take effect the next time the user logs in.

This works because /etc/sudoers is pre-configured to grant permissions to all members of this group (You should not have to make any changes to this):

# Allow members of group sudo to execute any command
%sudo   ALL=(ALL:ALL) ALL

As long as you have access to a user that is in the same groups as your "original" user, you can delete the old one.


Realistically, there are also other groups your new user should be a member of. If you set the Account type of a user to Administrator in Users Settings, it will be placed in at least all of these groups:

adm sudo lpadmin sambashare

Because your system configuration may vary, I suggest taking a look at the output of groups <username> to see what groups are normally in use.

ændrük
  • 78,726
267

I did

sudo usermod -a -G sudo <username>

as recommended here.

Leszek
  • 3,239
  • 1
  • 20
  • 17
  • 47
    group sudo does not exist – Aaron Esau Sep 02 '16 at 03:55
  • The only working solution here. Ubuntu 16 – Makan Sep 27 '17 at 21:47
  • 8
    For an existing user, this is the correct solution. It should be marked as the answer. – Yokai Nov 13 '17 at 06:30
  • 4
    Do not forget -a flag or you will remove user from all groups except sudo – alexandre-rousseau Aug 28 '18 at 15:51
  • 1
    @RousseauAlexandre absolutely! most important, especially if you are trying to add yourself to a non-sudo group and you're the only one on the machine with sudo privileges... without -a you just removed yourself from the sudo group! – Timothy L.J. Stewart Dec 06 '18 at 18:57
  • 1
    This isn't the answer, the answer is to add the line ALL=(ALL) ALL to sudoers file via the visudo command. – Owl Jan 07 '19 at 18:51
  • 1
    @AaronEsau if, like me, you stumbled across this thread from Google but you're using a BSD distro (not Ubuntu), use sudo usermod -a -G wheel <username> – Zaya Jan 15 '24 at 19:49
  • @Owl no, editing the sudoer file is one solution but it’s not the only one. You can also give sudo access to the sudo group and then all you have to do is add a user to the group, as most answers recommend to do. – bfontaine Aug 12 '24 at 10:10
  • @bfontaine yes, that's true, there's many ways to skin a cat. – Owl Aug 19 '24 at 17:22
  • @Owl Yes, or add <username> ALL=(ALL:ALL) ALL to a new file in /etc/sudoers.d – Sam Mar 25 '25 at 08:21
105

Open the sudoers file: sudo visudo will open the /etc/sudoers file in the editor defined in $EDITOR (probably GNU nano - set the variable if it's not what you want, eg export EDITOR="nano" and try sudo visudo again).

Add the below line to the end of the file.

username ALL=(ALL) ALL   # Change the user name before you issue the commands

Then perform WriteOut with Ctrl + O. The editor will ask you for the file name to write into. The default will be a temporary file that's used by visudo to check for syntax errors before saving to the actual sudoers file. Press Enter to accept it. Quit the nano editor with Ctrl + X.

Done!

Zanna
  • 72,471
  • 11
    It would be inadvisable to explicitly add a single user to the sudoers file instead of simply adding that user to the appropriate group sudo. – Kzqai May 05 '14 at 18:56
  • 3
    with sudo visudo you can output to /etc/sudoers.tmp, when leaving the editor it will overwrite /etc/sudoers by itself – Climbatize Apr 02 '15 at 19:44
  • 1
    and visudo will verify the syntax to make sure there are no errors – mchid Jun 29 '15 at 09:32
  • syntax error if using this . – jheriko Mar 08 '16 at 16:04
  • 2
    The other solutions work great for OSs with a built in sudo group, but for the occasional system without a dedicated sudo group, this solution works. The only recommendation I have is you may want to avoid putting sudo itself inside the procedure, as it may not be setup yet! Easy to workaround by doing su - and then simply visudio. This works on Gentoo. – tresf Feb 16 '18 at 18:21
  • 2
    Should I also add <username> ALL=(ALL) NOPASSWD: ALL ? – alper Dec 26 '21 at 19:08
  • Also, if you're trying to edit /etc/sudoers directly, you should consider adding a file to /etc/sudoers.d/ instead - see https://superuser.com/questions/869144/why-does-the-system-have-etc-sudoers-d-how-should-i-edit-it – Minkus Oct 03 '22 at 11:58
33

One thing I have to add that I'm sure a lot of people don't understand:

Once you have already done a adduser "username", you can still come back and do a adduser "username" sudo, and it will then add that user to the group properly.

It actually won't work the first time around like sudo adduser username sudo. It will give you an error. Which in summary means you must first make the user account before you can add them to a group.

hg8
  • 13,580
TaunT406
  • 331
17

on CentOS, I do as root

echo ' username ALL=(ALL)   ALL' >> /etc/sudoers
15

The following snippet grants root access to username without explicitly logging in as root.

Make sure that the user is added to sudo group first. Tested on Ubuntu 16.04.1 LTS.

sudo adduser username sudo
sudo sh -c "echo 'username ALL=NOPASSWD: ALL' >> /etc/sudoers"
Sandeep
  • 590
  • 4
  • 5
12

All members of the group admin, are in Ubuntu by default allowed to use sudo, so the easiest way is to add the user account to the admin group.

If you do not want to give the user account full root access, you need to edit the /etc/sudoer file with visudo (it makes sure that you do not have any syntax errors in the file and lose sudo capability altogether) in a way that you specify what commands this user (or a new group) can execute as root.

The sudoer manual will give you more information about this. You can specify which commands are permitted by a particular user/group to be executed as root.

txwikinger
  • 29,456