Last active
June 24, 2024 21:32
-
-
Save sgtoj/f82990bcd9e89db49b84e2d2e70b281d to your computer and use it in GitHub Desktop.
Ubuntu for Windows: Mounting C: Drive to WSL's Root
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# allow `mount` cmd without password | |
echo "$USER ALL=NOPASSWD: /bin/mount" | (sudo su -c 'EDITOR="tee -a" visudo') | |
# add the mount directive to `fstab` | |
sudo mkdir -p /c | |
sudo sh -c "echo '/mnt/c /c none bind' >> /etc/fstab" | |
# update to `.bashrc` to auto mount at login | |
echo "sudo mount -a" >> ~/.bashrc | |
# now reload it | |
source ~/.bashrc |
Check the line endings of wsl.conf
? I am now using the new method without issue.
works fine on 18.04.2 WSL windows 10 pro. but I see /mnt/c as empty directories
works fine on 18.04.2 WSL windows 10 pro. but I see /mnt/c as empty directories
Had the same problem. It gone when changed root
property in automount
section to /mnt/
(from just /
).
FYI this is now possible to do it with
wsl.conf
https://docs.microsoft.com/en-us/windows/wsl/wsl-config
root = /
diego@diego-thinkpad:~$ cat /etc/wsl.conf # Enable extra metadata options by default [automount] enabled = true root = / options = "metadata,umask=22,fmask=11" mountFsTab = false # Enable DNS – even though these are turned on by default, we’ll specify here just to be explicit. [network] generateHosts = true generateResolvConf = true diego@diego-thinkpad:~$ mount -l | grep drvfs C: on /c type drvfs (rw,noatime,uid=1000,gid=1000,umask=22,fmask=11,metadata) diego@diego-thinkpad:~$
Works for me (wsl 1, Win 10 pro, Version 10.0.18363.1500, Ubuntu 20.04.2 LTS)
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Same here, duplicated the wsl.conf, restarted no-joy. running 18.03