341

I have installed Linux Bash on Windows 10 (available from Microsoft), but I've forgotten my password.

I've searched for a solution but I only find suggestions that involve doing something before the system boots, like accessing recovery mode, but that will not work in this case as this Ubuntu is just an application within a Windows system and doesn't have its own boot process.

How can I reset my password?

Zanna
  • 72,312

7 Answers7

518
  • Run bash and make a note of your Linux username (this need not match your Windows username), see How can I find out my user name?
  • Close Bash on Ubuntu if it is running (or the next command will fail).
  • In Windows admin command prompt (Super+X, A) change the default user to root:

    ubuntu config --default-user root
    

If you are using Ubuntu 18.04 in WSL, the command has changed to ubuntu1804 , so

ubuntu1804 config --default-user root
  • Now Bash on Ubuntu on Windows logs you in as root without asking password
  • Use passwd command in Bash to change the user password (the user whose password you want to reset):

    passwd your_username
    
  • Change the default user back to your normal user in Windows command prompt

    ubuntu config --default-user  your_username
    

If you are using Ubuntu 18.04 in WSL, the command has changed to ubuntu1804 , so

ubuntu1804 config --default-user your_username

Watch Full Video to Recover your password Windows Subsystem Linux https://youtu.be/dTR232yvDCE

Note 1: The subsystem used in the video is not Ubuntu, but Kali Linux. Hence the difference in the command.

Note 2: If you are still using the original Ubuntu subsystem that came with the Anniversary Update, use the command lxrun. Upgrade to the subsystem version distributed via Microsoft Store is recommended.)

Panther
  • 104,528
Tmu
  • 5,297
153

Microsoft has a good help page on this: WSL User documentation.

In Windows PowerShell (Super+X, i) you can log in to the Ubuntu root account with

wsl --user root

Then change the password as you usually would, i.e. for the current user (which is root) with

passwd

or for another user with

passwd username

which interactively asks you for a new password (twice). Windows admin privileges are not required.

If you have more than one distribution installed in WSL, then you can list the names of the installed distributions with

wsl -l

and then use the name of the distribution to specify into which distribution you want to log in to, for example to log into Ubuntu 20.04:

wsl -d Ubuntu-20.04 --user root
Nobody
  • 1,890
74

Important This answer is (a) for the older WSL1 only, (b) is outdated as it references paths that are no longer used by WSL1, even, and (c) most importantly, can cause filesystem corruption, per Microsoft. Please refer to other answers here for proper methods of changing the password.

The above did not work. Even after changing default user, Bash always opened with my user.

So instead I did this, which worked:

  1. Edit this file (in notepad or notepad++):

     %localappdata%\lxss\rootfs\etc\shadow
    
  2. Find your normal user, for example:

     user1:$jsdjksadgfhsdf.saflsdf.sadf.safd:17299:0:99999:7:::
    

and simply remove the hash part (below part)

    $jsdjksadgfhsdf.saflsdf.sadf.safd

you will see a different hash - I hope :) so it should look like:

    user1::17299:0:99999:7:::
  1. Save the file

  2. Start Bash again with root privileges and set your password

      sudo bash
      passwd <your-user-name> 
    

You can now set a new password without having to enter the previous one.

NotTheDr01ds
  • 22,082
28

Edit This no longer works if you have a store-installed distribution of WSL.

To add to Tmu's answer, here's a Powershell script (gist) that automates the process (including automatically detecting the current default username)

# Resets the password for the default LXSS / WSL bash user
$lxssUsername = (Get-ItemProperty HKCU:\SOFTWARE\Microsoft\Windows\CurrentVersion\Lxss).DefaultUsername
lxrun /setdefaultuser root
bash -c "passwd $lxssUsername"
lxrun /setdefaultuser $lxssUsername
6

I needed to reset my password also in my Windows 10, I has WLS 1

1- Check your linux/ubuntu name, listing the folder:

%userprofile%\AppData\Local\Microsoft\WindowsApps

In my case I found Ubuntu1604.exe, so I will use ubuntu1604 like name for the next step.  list files in: %userprofile%\AppData\Local\Microsoft\WindowsApps

2- Open CMD with administrator privilegies and run (you will get nothing in return):

ubuntu1604 config --default-user root

3- Start your WSL, check that you get root privilegues or run whoami (you need to be root) and change your password with:

passwd [your-linux-username]

4- Close your WSL and get back to the CMD Window and set back your default linux username:

ubuntu1604 config --default-user [your-linux-username]

5- Start your WSL/Ubuntu/AnotherLinux again, check and enjoy.

Jorgeee
  • 305
2

The other answers here, while mostly valid, are vastly overcomplicated. To change your user password in any WSL distribution, simply:

From inside Ubuntu (or another distribution):

wsl.exe \~ -u root -d $WSL_DISTRO_NAME -e passwd $USER

*Requires WSL Interop to be enabled, which is the default

Or from PowerShell or CMD (as a regular, non-admin user):

wsl ~ -u root -e passwd <username>
# Add the -d <distro_name> if not using the default distro

*Does not require WSL Interop.

NotTheDr01ds
  • 22,082
0

For those of you who lost the root password, what worked for me, was updating to Ubuntu 18.04 LTS via the Windows Store. Note, the windows store has two distinct options:

  1. Ubuntu
  2. Ubuntu 18.04 LTS (Pick this one)

To check your current version, run the following as any user:

At command prompt, enter:

cat /etc/*release

You should see a line in the output that says:

DISTRIB_RELEASE=16.01

If you see that, then definitely update to 18.04, and it will prompt you to create new UNIX credentials.