terminal
CMakeDetermineSystem.cmake Error (Mounted filesystem issue)
Riella
2020. 8. 11. 09:30
728x90
Reference: https://github.com/microsoft/WSL/issues/4257
Sometimes, catkin_make does not work due to disabled metadata on WSL.
You can check if the metadata is enabled or not by typing the command below.
mount | grep /mnt/c
Then it should be shown like...
C:\ on /mnt/c type drvfs (rw,noatime,uid=1000,gid=1000,metadata,case=off)
If there's no metadata on output, you need to make wsl.conf file on etc folder.
sudo nano /etc/wsl.conf
Add this to the file.
[automount]
enabled = true
options = "metadata"
Then exit the bash shell and restart the computer.
Then your mount should be changed