I am trying to make a symlink so all documents are on a different harddisk drive. I learned how to make a symlink and tried to create the desired symlink. this is the command I used in terminal:
ln -s /media/Schijf-2/Nel/Mijn Documenten/ ./home/nel/Documenten
However, I receive an error message:
ln: target '.home/username/Documenten' is not a directory
I found similar questions but I do not understand what I did wrong:
https://askubuntu.com/questions/465493/how-can-i-symlink-my-home-folder-from-another-drive
Create a symbolic link relative to the current directory
I tried to symlink my /home/<user>/Documenten
directory to /media/Schijf-2/Nel/Mijn Documenten
.
How can I succeed?
./home/nel/Documenten
starts from the current directory rather than the filesystem root. – Shadur-don't-feed-the-AI Nov 15 '14 at 16:43