How can I regain admin privileges?

8,103

Following up on the comments above:

Because the admin group doesn't exist on your system we are assuming you are running 12.04. To be able to administer your system with 12.04 you need your user-id to be in the sudo group. I was able to add a user-id to the sudo group as follows.

Reboot using grub and select an entry for recovery mode.

Select the "root" option from the Recovery Menu. From the terminal that opens at the very bottom type:

mount -o remount,rw /

sudo addgroup your-username sudo

Then you can resume the boot by holding control and pressing "d" and select resume from the Recovery Menu.

As explanation, in recovery mode you come up with the root filesystem in read-only "error mode". The first command makes the file system writeable. The second command adds your-username to the sudo group.

When you continue the boot, or somehow reboot, your user-id will be able to use the sudo command as normal. Once you have sudo privileges you can add another administrative user and see what groups they are in, and then you can add your account to those groups, too.

Share:
8,103

Related videos on Youtube

user6520705
Author by

user6520705

Updated on September 18, 2022

Comments

  • user6520705
    user6520705 about 1 year

    I'm very new to Linux so I don't understand a lot of the terms you guys use. I need a basic answer on why I keep getting admin group does not exist. I accidentally changed my initial account from admin to a standard user and I do not have admin privileges anymore. How can I recover from this. Please explain this in very basic terms for me. I tried some of the answers given but none of them helped me.