指向 Windows 安装的符号链接中的 mkdir 指向自己的目录

指向 Windows 安装的符号链接中的 mkdir 指向自己的目录

我目前正在使用适用于 Linux 的 Windows 子系统运行我的 Linux 程序,同时配置我的主目录,我决定将我的 Windows 文档文件夹链接到其中,以便轻松访问我的数据。

但是,每当我在该符号链接内创建一个目录时,新目录都会指向我刚才创建的目录,从而形成一个无限循环。例如:

user@host:~$ ln -s /mnt/c/Users/John/Documents/ /home/Paradoxis/Documents
user@host:~$ cd Documents
user@host:~/Documents$ ls -la
total 12
drwxrwxrwx 2 root root   0 Feb  1 15:17 .
drwxrwxrwx 2 root root   0 Feb  1 14:36 ..
-rwxrwxrwx 1 root root 402 Dec 15 13:42 desktop.ini
user@host:~/Documents$ mkdir Hello
user@host:~/Documents$ ls -la
total 12
drwxrwxrwx 2 root root   0 Feb  1 15:22 .
drwxrwxrwx 2 root root   0 Feb  1 14:36 ..
drwxrwxrwx 2 root root   0 Feb  1 15:22 Hello
-rwxrwxrwx 1 root root 402 Dec 15 13:42 desktop.ini
user@host:~/Documents$ cd Hello
user@host:~/Documents/Hello$ ls -la
total 12
drwxrwxrwx 2 root root   0 Feb  1 15:22 .
drwxrwxrwx 2 root root   0 Feb  1 14:36 ..
drwxrwxrwx 2 root root   0 Feb  1 15:22 Hello
-rwxrwxrwx 1 root root 402 Dec 15 13:42 desktop.ini
user@host:~/Documents/Hello$ cd Hello/
user@host:~/Documents/Hello/Hello$ ls -la
total 12
drwxrwxrwx 2 root root   0 Feb  1 15:22 .
drwxrwxrwx 2 root root   0 Feb  1 14:36 ..
drwxrwxrwx 2 root root   0 Feb  1 15:22 Hello
-rwxrwxrwx 1 root root 402 Dec 15 13:42 desktop.ini
user@host:~/Documents/Hello/Hello$ # Goes on forever

有什么办法可以解决这个问题吗?谢谢

相关内容