I'm new to Linux and just downloaded WSL2 and ubuntu on my Windows PC. I started the Windows terminal, chose Ubuntu from there, and wanted to move to the Desktop by using cd. However, I could not find the Desktop folder. First, I did "ls /" and many folders labeled as the following appeared. "bin", "dev", "home", "lib"..... Where is the Desktop folder? I moved to the "home" folder but there was nothing...
Asked
Active
Viewed 126 times
1 Answers
2
WSL mounts the windows filesystem under /mnt/c
, try /mnt/c/Users/<username>/desktop
.

Johan Nordlinder
- 1,672
- 1
- 13
- 17
-
2Additionally, the `c` in `/mnt/c` is the drive letter. Others may use something different. Not every Windows / user directory installed in C... – Geno Chen Feb 01 '23 at 06:22