For example, I create a link ln -s /mytarget /mylink (where mytarget is a directory). Now I would like to create a link to /mylink, i.e., ln -s /mylink /mylinkother. The first link mylink works fine, but the second link mylinkother does not work.
Related:
It actually works as I described on my first post. I was just pointing the symbolic link target, i.e.,
ln -s /linktarget linknameotherto a non existing location. Once the/linktargetlocation was correct, my second link worked fine.