나는 현재 사용하고 있습니다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
이 문제를 해결할 수 있는 방법이 있나요? 감사해요