You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Years of using MSYS and MSYS2 has ingrained the habit of referring to the C: drive as "/c" but Bash on Windows uses "/mnt/c". A good solution is using a bind mount:
mkdir -p /c sudo mount -o bind /mnt/c /c
However, this requires root and needs to be run every time you open a bash window. I tried using /etc/fstab for a persistent mount but I couldn't get it to work:
sudo sh -c "echo '/mnt/c /c none bind' >> /etc/fstab
kirov117, edrevo, marcesher, felipecruz91, emiliavanderwerf and 2 more