On my Linux system, I want to create a symbolic link to a folder on my Windows 7 partition formatted FAT32. I use:
sudo ln -s /media/OS/Users/dennis/AppData/Roaming/.minecraft ~/.minecraft
However, I end up with a file in my home directory called .minecraft and when I try to access it, I receive:
bash: CD: .minecraft: Too many levels of symbolic links
is there a way to make the symbolic link to the FAT32 folder?
df -k /media/OS/Users/dennis/AppData/Roaming/.minecraft ~/.minecraftandls -ld /media/OS/Users/dennis/AppData/Roaming/.minecraft ~/.minecraft? – jlliagre May 15 '11 at 6:20rm ~/.minecraftand then do theln -s ...above – Turbo J May 15 '11 at 7:49