Help me recover my password [duplicate]

I'm working on a Ubuntu system, and my client has completely forgotten his administrative password. He doesn't even remember entering one; however it is there.

I've tried the suggestions on the website, and I have been unsuccessful in deleting the password so that I can download applets required for running some files. Is there a solution?


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.


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!


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


If Jorge's method didn't work for you, as it didn't for me, here is another method. I had to try something different because:

  1. My USB keyboard did not work at the root prompt ⋯ probably hardware either keyboard or mainboard. To fix I used an old PS/2 keyboard (the little round plug) and use that.

  2. When I used passwd username to change my password, it failed because of a bad token or such. This called for drastic measures.

The Drastic Measures

This is a very dangerous thing to do! Jorge's method should be used; only do this in case that method doesn't work.

Do this at your own risk. It did work for me on my 11.10 system.

The idea is to set the user's password to blank (or null) - this allows you to just press Enter at the Password: prompt.

Still at the root prompt from Jorge's method, first remount the root file system as read-write by using this command:

mount -o remount,rw /
  • Now you are a super-user on this system. Tread lightly.

Then edit the password shadow file to remove the encrypted password for your username. Type in:

nano -B /etc/shadow

The nano editor will display the contents of the file. Each line will have the form name:⋯:⋯:⋯… where ⋯ is a string or null (empty). One of the lines will start with your username. The first ⋯ after your username is your encrypted password. As an example:

username:$1$amFeNcjp$PprjCKEVk3UtzKwWfEMOY0:14920:0:99999:7:::

where $1$amFeNcjp$PprjCKEVk3UtzKwWfEMOY0 is the encrypted password.

Carefully delete the encrypted password leaving the all the ":"s, so it looks like this:

username::14920:0:99999:7:::

Then type Ctrl+O, press the Enter key to save, then Ctrl+X to close nano.

Reboot and you will have an empty (or null) password. Be sure to use passwd username in a terminal to set or reset your user password.

Source for PS/2 workaround was here.

Sources for the drastic measures were here and here.

Note on nano ― the -B option makes a backup of the original edited file, same name with a "~" appended.


If recovery mode is disabled, the method I would use is booting to a Live CD or USB. It could be the media you installed from or just another Ubuntu ISO you've downloaded and burnt. The process is fairly simple.

  1. Boot to the Live media.
  2. From the menu, open a terminal.
  3. Find out the device name for your primary disk. sudo fdisk-l will list all partitions. Derive your partition from the list. We're looking for something like /dev/sda1 (which it will likely be)
  4. Mount this somewhere so we can use it (obviously change the disk to the right one):

    sudo mount /dev/sda1 /mnt
    
  5. Cross-mount things from the Live install so we can "use" the mounted disk (just copy and paste):

    for d in dev sys run proc; do sudo mount --bind /$d /mnt/$d; done
    
  6. Become root on the system by running sudo chroot /mnt. You can now do anything root can on the real install.

  7. Set the password for the account:

    passwd username
    
  8. Reboot and you're done.