How do I reset a lost administrative password?

Solution 1:

By default the first user's account is an administrative account, so if the UI is prompting you for a password it's probably that person's user password. If the user doesn't remember their password you need to reset it. To do this you need to boot into recovery mode (see also offical docs: RecoveryMode).

Boot up the machine, and after the BIOS screen, hold down the left Shift key (note that for UEFI BIOS you might need press ESC instead). You will then be prompted by a menu that looks something like this:

enter image description here

I've noticed on some systems that timing when to hit the left Shift key can be tricky, sometimes I miss it and need to try it again.

Hit the down arrow until you select the 2nd entry from the top (the one with the recovery mode in the description) and then hit Enter.

Now you should see this menu:

enter image description here

Using the arrow keys scroll down to root and then hit Enter.

You should now see a root prompt, something like this:

root@ubuntu:~#

At this stage you should have a read-only filesystem. You have to remount it with write permissions:

mount -o remount,rw /

Now we can set the user's password with the passwd command. (In this example I will use jorge as the example, you need to substitute whatever the user's username is):

root@ubuntu:~# passwd jorge
Enter new UNIX password:
Retype new UNIX password:
passwd: password updated successfully
root@ubuntu:~#

Type in what you want the new password to be at the prompt. After it's successful reboot the machine and the user will be able to log in with their new password.

  • Recovery Mode documentation
  • Lost password documentation

There is concern about this being a security vulnerability. It is not. You need to have physical access to the machine to do this. If someone has physical access to your PC, they could do far worse than change a password. When it comes to physical access, the battle for security is lost. Be wary of who you let on your PC.

Even setting a root password will not be successful, as one can simply boot with init being /bin/sh and have full root access. Again, given physical access, anyone with computer knowledge can do ANYTHING to your computer.

Solution 2:

Yes, you can change the old password via GRUB.

  1. If you have a single-boot (Ubuntu is the only operating system on your computer), to get the boot menu to show, you have to hold down the Shift key during bootup.

  2. If you have a dual-boot (Ubuntu is installed next to Windows, another Linux operating system, or Mac OS X; and you choose at boot time which operating system to boot into), the boot menu should appear without the need to hold down the shift key.

  3. From the boot menu, select recovery mode, which is usually the second boot option.

  4. After you select recovery mode and wait for all the boot-up processes to finish, you'll be presented with a few options. In this case, you want the Drop to root shell prompt option so press the Down arrow to get to that option, and then press Enter to select it.

  5. Once you're at the root shell prompt, if you have forgotten your username as well, type ls /home (small letters & not capitals). This will list all the user accounts in your set up.

  6. To reset the password, type passwd username where username is the username you want to reset, for example, passwd mysterio in my case.

  7. You'll then be prompted for a new password. When you type the password you will get no visual response acknowledging your typing. Your password is still being accepted. Just type the password and hit Enter when you're done. You'll be prompted to retype the password. Do so and hit Enter again.

  8. Now the password should be reset. Type exit to return to the recovery menu.

  9. After you get back to the recovery menu, select resume normal boot, and use Ubuntu as you normally would — only this time, you actually know the password!

Solution 3:

If you forgot the password for your Ubuntu system you can recover using the following steps:

  1. Turn your computer on.

  2. Press ESC at the GRUB prompt.

  3. Press e for edit.

  4. Highlight the line that begins kernel ......... or linux ........, press e

  5. Go to the very end of the line and add rw init=/bin/bash

  6. Press Enter, then press b to boot your system. Your system will boot up to a passwordless root shell.1

  7. Now issue the command passwd username *where "username" is the user for which you want to change the password.

  8. Then you will be asked to give new password:

    Enter new UNIX password:

1Source: ubuntugeek

Other resources:

  • Ubuntu Documentation

  • Ubuntu Help

  • Psychocats

For Xubuntu 14.04 just follow the screens below. It's similar to some of the other answers.

Press Esc, and choose Advanced options

Enter image description here

Choose recovery mode:

Enter image description here

Then choose root, and once you get the prompt type passwd <user_name>, to change the password.

Enter image description here