ShahradR / windows-dev

Windows development image used for personal projects
MIT License
0 stars 0 forks source link

Vagrant requires root to run in WSL #1

Closed ShahradR closed 4 years ago

ShahradR commented 4 years ago

When running vagrant, the following error message is returned.

$ vagrant
fuse: failed to open /dev/fuse: Permission denied

Cannot mount AppImage, please check your FUSE setup.
You might still be able to extract the contents of this AppImage
if you run it with the --appimage-extract option.
See https://github.com/AppImage/AppImageKit/wiki/FUSE
for more information
open dir error: No such file or directory

This is because /dev/fuse is owned by root:root. However, according to Debian bug reports #341491 and #368674, a fuse group should have been created, and the ownership on /dev/fuse should have been set to root:fuse.

ShahradR commented 4 years ago

This was "fixed" by re-creating a new WSL 2 image from scratch. Will re-open if it comes back.