How do I create a superuser from the command line in Ubuntu?

67,674

You can create a new user simply using the adduser(8) command.

To make it a user capable of performing sudo, add him to the sudo group using either of the following commands:

sudo usermod -a -G sudo <username>
sudo adduser <username> sudo

This works because the sudo group is predefined in /etc/sudoers. Note though that older versions of Ubuntu will use admin as group instead:

Until Ubuntu 11.10, the Unix group for administrators with root privileges through sudo had been admin. Starting with Ubuntu 12.04 LTS, it is now sudo, for compatibility with Debian and sudo itself. However, for backwards compatibility, admin group members are still recognized as administrators

For any other customization, refer to the Sudoers documentation.

Share:
67,674
Thillai Narayanan
Author by

Thillai Narayanan

Updated on September 18, 2022

Comments

  • Thillai Narayanan
    Thillai Narayanan over 1 year

    Possible Duplicate:
    How to create a admin user on ubuntu

    How can I create a superuser in Ubuntu 11.10? I need to create it using the command line.

    Either we could change a normal user to become a superuser, or we could create a superuser right away.

  • Oliver Salzburg
    Oliver Salzburg about 12 years
    adduser can also add users to groups: adduser <username> <groupname>
  • slhck
    slhck about 12 years
    Yeah, it's just a nice frontend, you're right :)
  • Oliver Salzburg
    Oliver Salzburg about 12 years
    Also, to my understanding, there is a slight distinction between the admin and sudo groups (both exist in 11.10), but I don't think I understand it myself.
  • slhck
    slhck about 12 years
    I thought it was uncommented by default in sudoers but I don't know exactly anymore.
  • Cerin
    Cerin almost 11 years
    This doesn't work in 12.04.2. "usermod: group 'admin' does not exist"
  • slhck
    slhck almost 11 years
    @Cerin If you read my answer it says that you have to use sudo for newer Ubuntu versions. I'll rewrite the answer later for that to be the default, but it is there...