mkdir no link simbólico para os pontos de montagem do Windows para o próprio diretório

0

Atualmente, estou usando o Windows Subsystem para Linux para executar meus programas Linux, enquanto configuro Em meu diretório inicial, decidi vincular minha pasta Documentos do Windows a ele para acessar facilmente meus dados.

No entanto, sempre que eu faço um diretório dentro desse link simbólico, o novo diretório aponta de volta para o diretório que eu estava criando apenas um loop infinito. Exemplo:

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

Existe alguma maneira de corrigir isso? Obrigado

    
por Paradoxis 01.02.2017 / 15:26

0 respostas