497

When I start bash on Windows Subsystem for Linux, it drops me in the directory

/mnt/c/Users/<username>

When I ls this directory, I see the directories Desktop, Documents, etc. that I can see are in C:\Users\<username> using the Windows File Explorer. Since this is where the bash program started, I expected this is my home directory, but when I type either cd or cd ~ I am brought to

/home/<username>

which contains my .bashrc, .profile etc. file which I would expect to find in my home directory in a Linux box. Moreover, entering cd ../.. from here I can see the directories bin, etc and so on, again as expected on a Linux box.

I have two questions regarding all this:

  1. What exactly is /mnt/c/Users/<username> compared with C:\Users\<username>? It seems they are one in the same---so what is /mnt/c/?
  2. How can I view the files in /home/<username> using the Windows File Explorer? Not that I'd really ever want to---I'm just trying to get a feel for how Windows is organizing this Subsystem for Linux thing.
1

11 Answers 11

507

In the latest versions [2020], the file system is accessed from:

# \\wsl$\<Distribution>:

\\wsl$\Ubuntu

Previously, as of 2018, The current path is related to which distribution you have installed from the Microsoft Store rather than one global path; for Ubuntu, it was located at:

%LOCALAPPDATA%\Packages\CanonicalGroupLimited.UbuntuonWindows_79rhkp1fndgsc\LocalState\rootfs

For example with Debian the file would be a file that is an ext4 virtual disk:

%LOCALAPPDATA%\Packages\YourDistroName\LocalState, you can see a file named ext4.vhdx

Other distributions should be (to be confirmed) in a similar location under their respective folders within:

%LOCALAPPDATA%\Packages\
21
  • 67
    Anyone else find this practice disturbing? Isn't my HOME folder supposed to be the ONE safe place for MY data inside a repo? With this approach, a broken repo and reinstall hoses MY DATA with NO attempt to protect it at all AND it's hidden when I already have a REAL /home. Why isn't data persisted there? This is all the more dangerous because we're now being encouraged to try/use/swap distros (WLinux). Really feels like someone didn't think this whole thing through.
    – rainabba
    Commented Sep 25, 2018 at 19:53
  • 11
    Important Note: You should still not poke around Linux files using Windows tools. See: blogs.msdn.microsoft.com/commandline/2016/11/17/… (also see the blog post itself) Commented Dec 11, 2018 at 6:14
  • 9
    @rainabba At first blush I agree but after some thought, I'm still choosing to use Windows rather than full-blown Ubuntu. As such I'm treating WSL as a way to access Linux tools but still treating my windows file system as the first class citizen. So /mnt/c/ is where I store everything in WSL. I would love it if WSL was reversed to LWS; meaning it would be awesome if we were all running Ubuntu with Linux Subsystems for Windows to run a complete Windows 10 copy integrated into Ubuntu. I know, that would be a lot harder but one can dream.
    – CatDadCode
    Commented Jul 12, 2019 at 6:10
  • 27
    For WSL2 you can access to home directory from windows like this \\wsl$ Commented Oct 31, 2019 at 9:01
  • 21
    @FranciscoTena fortunately \\wsl$ is available already for WSL1 since Windows 10 1903! Commented Apr 28, 2020 at 20:56
382

In Bash, to view the current directory in Windows File Explorer just enter:

explorer.exe .

Don't leave out the ".".

This will open windows explorer at the current folder and you can see where everything is in relation to the rest of your Windows system.

9
  • 43
    Actually explorer.exe . does work in WSL. This is the only answer which worked for me as all the paths provided by the other answers are not present in my system. I could not edit the answer myself because edits must be at least 6 characters. Commented Dec 10, 2019 at 11:07
  • 8
    Interesting. In my case, no matter where I execute explorer.exe ., it always open the File Explorer in my Windows user home directory (%USERPROFILE%). Windows 10 Enterprise 1809 (build 17763.1039), Ubuntu 18.04. Doesn't matter if I'm in my Ubuntu's home, /etc or whatever. Commented Mar 6, 2020 at 18:27
  • 3
    I think we may miscommunicate here - the answer seems to relate to bash itself, right? But not necessarily bash in WSL1. I just tried this on my ubuntu installation within WSL1 and "explorer.exe" can not be found, so I think the answer can only be partially correct, contrary as to what Marco Lackovic stated. Perhaps explorer.exe works, but 100% not by default, because I have just tried it with an instance of bash booting ubuntu.
    – shevy
    Commented Aug 26, 2020 at 16:25
  • 1
    This worked like charm! I didn't expected that .exe will work from WSL2 terminal. crazy! Commented Sep 13, 2021 at 16:33
  • 1
    This is the correct answer. You can access the WSL Home directory by doing this as well as pin it to Quick Access. Also see here (dev.to/vetswhocode/…) for another answer involving aliases and switching directory.
    – Barra
    Commented Nov 11, 2022 at 21:52
69
  1. /mnt/c is the exact same as C:\. It's just the syntax for getting to it from WSL.
  2. Look in C:\Users\<username>\AppData\Local\Lxss\rootfs.
6
  • 12
    Warning: blogs.msdn.microsoft.com/commandline/2016/11/17/… that's the place yes but do not change anything.
    – chx
    Commented May 5, 2017 at 22:34
  • 16
    As of 2018, this answer is not valid anymore. See @MichaelBond's answer.
    – dr_
    Commented Mar 20, 2018 at 9:44
  • 50
    Now it's gone to C:\Users\[USERNAME]\AppData\Local\Packages\CanonicalGroupLimited.UbuntuonWindows_[CODE]\LocalState\rootfs\ You might aware how bad if you edit / manually Commented Jun 21, 2018 at 5:41
  • 3
    for easy access via copy-pasta, `%LOCALAPPDATA%\Packages\CanonicalGroupLimited.UbuntuonWindows_[CODE]\LocalState\rootfs`
    – twig
    Commented May 13, 2019 at 0:05
  • 1
    Note that the lxss folder will be hidden in File Explorer unless you uncheck "Folder options > View : Advanced settings : Hide protected operating system files (Recommended)". But even though it's hidden, you can still open the folder in File Explorer if you enter it in the folder path.
    – Daryn
    Commented May 16, 2019 at 7:20
52

About the filesystem mounted on /mnt/c

  1. What exactly is /mnt/c/Users/ compared with C:\Users<username>? It seems they are one in the same---so what is /mnt/c/?

In contrast to Windows, Linux (and the other systems based on Unix) use a single folder structure independent of the number of disks you have. If you have multiple disks, all these disks must me mounted into the folder structure at some point.

  • Typically, all the disks (different than the used to boot the system) are mounted in a folder named /mnt or /media

WSL has an special type of filesystem named DrvFS that gives you access to the disks used in windows. You can use DrvFS to mount, not only your windows filesystem, but also network disks and other media types.

  • In WSL, by default, the C: disk in windows is mounted under /mnt/c
  • If you have another disk, for instance a D: disk in windows, it will be mounted under /mnt/d

The files you can see in /mnt/c are the same you have in C:. If you modify some file, you will get the changes in the windows too.

You may use the mount command to access other types of media (e.g. removable drives or network shares).


About the location of /home/<username>

  1. How can I view the files in /home/ using the Windows File Explorer? Not that I'd really ever want to---I'm just trying to get a feel for how Windows is organizing this Subsystem for Linux thing.

In WSL, all the linux filesystem is located under a Windows folder. The location of the folder depends on the version of Windows and of the WSL distribution you are using.

  • Initial versions of WSL store the linux filesystem in %LOCALAPPDATA%\Lxss\rootfs
  • WSL distributions installed from the Windows Store, starting in Windows Build 16215 (mid of 2017), use a folder like %LOCALAPPDATA%\Packages\{package}\LocalState\rootfs. The name of the package varies depending on the distribution (e.g. it is different for Ubuntu than for Debian). For Ubuntu on Windows it is CanonicalGroupLimited.UbuntuonWindows_{code}, for example.
  • Linux distributions installed using other tools, such as lxRunOffline or WSL-DistroLauncher may store the linux filesystem into any location.

You may check many options to know the location of the WSL folder. For instance, I think the easiest option is to use lxRunOffline to know the installation folder.

## You can use lxrunoffline to check which WSL distributions have installed
## using:   lxrunoffline list

C:\> lxrunoffline list
backup
Ubuntu-18.04    

## And you can use it to get the location of any of these WSL installations
## using:   lxrunoffline get-dir -n <name of distribution>

C:\> lxrunoffline get-dir -n backup
c:\wsl\installed\backup

C:\> lxrunoffline get-dir -n Ubuntu
C:\Users\Jaime\AppData\Local\Packages\CanonicalGroupLimited.UbuntuonWindows_79rhkp1fndgsc\LocalState

Once you know the location of the installation folder, the /home/<username> is under <installation folder>\rootfs\home\username.

  • For instance, if your installation folder is c:\wsl\ubuntu
  • the /home/<username> is in c:\wsl\ubuntu\rootfs\home\username

NOTE: Both Linux and Windows stores file permissions in different ways. Nowadays, the WSL DrvFS stores the Linux permissions as Streams (metadata) attached to the files you can see in Windows. Microsoft does not recommend to modify linux files using Windows programs. It is possible that some Windows applcations damage the linux permissions without notice it.

32

With the current Windows 10 Insider (Fast ring: Windows 10 build 19025.1) you can mount your distro as a network drive.

WSL is accessible as wsl$, the path is your distribution name (wsl -l -q).

For example net use Z: \\wsl$\Debian /PERSISTENT:YES

5
  • Are you sure this is limited to WSL2? I thought as of 1903 you could explore the contents of the WSL file structure from within Windows. Creating a map network location would have been possible with that change.
    – Ramhound
    Commented Nov 16, 2019 at 15:38
  • As I wrote I am not sure about WSL2. There are two points: introducing WSL2 (from build 18432) and distribution backed by WSL 2. This feature appears along with WSL2 and I hope it works with any distribution.
    – foal
    Commented Nov 16, 2019 at 16:19
  • 1909 (WSL2) is 18363.476, not 18432(Insider Preview 20H1) unless you are saying, this is only on 20H1 builds?
    – Ramhound
    Commented Nov 16, 2019 at 21:19
  • Just to add: this is the preferred way of accesing those files as per devblogs.microsoft.com/commandline/…
    – mhl666
    Commented Dec 31, 2019 at 15:31
  • Open windows explorer and type to open \\wsl$\ . Then choose your linux distribution to open folder or even map to a letter. Works with wsl version1.
    – arvati
    Commented Apr 6, 2020 at 11:26
14

It depends on which windows build you are on, for me in 2018 on Windows 10 Pro 64-bit, Version 1709 (OS Build 16299.522) and also Version 1803 (OS Build 17134.165) the location is still:

C:\Users\<username>\AppData\Local\lxss

The trick is when you're at C:\Users\<username>\AppData\Local you will not see an lxss folder (unless you happen to have unchecked "Hide protected operating system files (Recommended)" in your folder options).

However just append \lxss in the windows explorer address bar and it will take you to the folder.

(Note I did not have a %LOCALAPPDATA%\Packages\CanonicalGroupLimited.UbuntuonWindows_79rhkp1fndgsc or anything similar that was mentioned in Michael Bonds answer)

Update

Turns out there is legacy WSL which is what I had installed. Now WSL is provided via a Microsoft store app. There are versions for Ubuntu 18.04 LTS and also now a few other flavors of Linux (e.g. Debian). If you want to be up-to-date you should uninstall legacy WSL and install the Microsoft store version.

Where your home folder is will depend on which of these types of WSL you have installed. With the Microsoft store version it will, as mentioned in other answers, be located at:

%LOCALAPPDATA%\Packages\CanonicalGroupLimited.UbuntuonWindows_79rhkp1fndgsc \LocalState\rootfs

6
  1. Using WSL bash console, in your home directory, create a file with an arbitrary specific name such as "test_here.txt".
  2. Then using Windows Explorer, using the search box, search for the file test_here.txt.
  3. On the found file > right-click > Open file location.
4
  • I tried this. It doesn't work. I don't see the file in search. However, if I drop the file in /mnt/c/Users/<username> it obviously works. Commented Jan 11, 2019 at 16:39
  • I'm afraid I tried the WSL but I don't use this anymore. I didn't find it much useful. (I use cygwin daily, instead of WSL, and I find it very useful.) So I cannot verify it anymore, sorry ;)
    – Ellis
    Commented Jan 13, 2019 at 7:54
  • Searching for rootfs works. you can then navigate the unbuntu file system from there.
    – tigr
    Commented Jan 21, 2019 at 4:14
  • Believe it or not, this method did not work for me. Neither rootfs or the file I created in my WSL home directory can be found by Windows. I'm so very confused.
    – dx_over_dt
    Commented Jul 27, 2020 at 17:06
3

Four steps for windows 10 pro to pin your Debian/Ubuntu/OpenSUSE $HOME to the start menu of Windows:

  1. From start menu start File Explorer
  2. In address bar (not search bar) type %LOCALAPPDATA%.
  3. In search bar look for your $HOME directory name, in my case it was ekenny. There will be about 3 versions of this but you want the one with really long path.
  4. Right click your home directory and click "Pin to Start".

Now you have your home directory pinned to your start menu. I tried creating a shortcut but that doesn't go anywhere intelligible.

3

On my setup (WSL Ubuntu under the "Windows 10 development environment" downloaded from https://developer.microsoft.com/en-us/windows/downloads/virtual-machines) the AppData folder was hidden by default. So had to:

  • open windows explorer
  • go to C:\Users\User\
  • select view on the meny
  • check hidden items
  • then the AppData folder appears under C:\Users\User
  • and I found my /home/user under C:\Users\User\AppData\Local\Packages\CanonicalGroupLimited.UbuntuonWindows_*\LocalState\rootfs\home\user (where * is probably a local code or version depending code of some sorts)

Don't know why it's tucked away like that.

0
1

I just needed to find /etc/environment using Ubuntu 16.04 looking into Windows 10 NTFS storage. I found it here:

C:\Users\USER_NAME\AppData\Local\Packages\CanonicalGroupLimited.Ubuntu16.04onWindows_79rhkp1fndgsc\LocalState\rootfs\etc\environment
  • I changed /mnt/c/ to C:\ for Windows nomenclature.
  • I also changed all occurrences of / to \ for same reason.
  • You need to replace USER_NAME with your Windows User Name.
  • I had to use sudo -H Nautilus to get permissions to view the User Files stored in WSL.
  • NEVER update your Linux files in WSL using a Windows application. It will corrupt your Linux data.

From the Linux (Ubuntu 16.04) side the nomenclature would be:

$ sudo cat /mnt/c/Users/USER_NAME/AppData/Local/Packages/CanonicalGroupLimited.Ubuntu16.04onWindows_79rhkp1fndgsc/LocalState/rootfs/etc/environment

PATH="/mnt/e/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/games:/usr/local/games"
export LIBGL_ALWAYS_INDIRECT=Yes
export DISPLAY=localhost:0.0
0

If you installed your distribution with Chocolatey, the path to the home directory is:

C:\ProgramData\chocolatey\lib\wsl-<distribution-name>\tools\unzipped\rootfs\home

For example for Ubuntu 18.04:

C:\ProgramData\chocolatey\lib\wsl-ubuntu-1804\tools\unzipped\rootfs\home

You must log in to answer this question.

Not the answer you're looking for? Browse other questions tagged .