所以我最近在我的 PC 上安装了适用于 Linux 的 Windows 子系统,每次使用该pwd
命令时,我都会看到/mnt/
路径名中添加了该部分。下面是我所指的一个例子。
Michael@X556AUK:~ $ pwd
/mnt/c/Users/Michael
有没有办法隐藏路径名的一部分。我以前/mnt/
能够从 Cygwin 路径名中删除该部分,我想知道如何在 WSL 上执行类似操作。/cygdrive/
/mnt/
答案1
您可以尝试绑定挂载。在 Linux 中它将:
remount part of the file hierarchy somewhere else.
The call is:
mount --bind olddir newdir
After this call the same contents are accessible in two places.
所以我认为你想要mount --bind /mnt /
链接是另一种想法,但它可能只是使路径更长而不是更短。