Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Say that I create a symbolic link like:

ln -s foo bar

So now bar is a link to foo

I want to create another symbolic link to foo, but now using bar. If I try

ln -s bar koko

ls shows koko as an invalid link


[EDIT] (added later)

Is there a way to achieve what I try?

$ ln -s /etc/apache2 FOO/
$ ln -s FOO/apache2 LALA/
$ ls FOO/apache2/
apache2.conf  envvars     magic           mods-enabled  sites-available
conf.d        httpd.conf  mods-available  ports.conf    sites-enabled
$ ls LALA/apache2/
ls: cannot access LALA/apache2/: No such file or directory/

[EDIT] (added later)

If instead of

ln -s FOO/apache2 LALA/

I do

cd LALA ; ln -s ../FOO/apache2 .

Then the symlink is valid

Any idea what's the difference?

share|improve this question
what you do is absolutely valid. what do you mean by "invalid link"? – Pavel May 18 '12 at 16:52
ls koko gives 'No such file or directory' ls bar works ok – George Kastrinis May 18 '12 at 16:54
1  
i think some people might downvote you, because they think this question should be asked on superuser.com – snies May 18 '12 at 17:02
1  
people downvote this question, because the example (above EDIT) simply does not work. – filiprem May 18 '12 at 17:35
1  
@George Kastrinis - What's with the freakin' trailing slashes??? Create your links without the slashes, and see what happens! – paulsm4 May 18 '12 at 18:22
show 4 more comments

closed as off topic by casperOne May 18 '12 at 18:40

Questions on Stack Overflow are expected to relate to programming or software development within the scope defined in the FAQ. Consider editing the question or leaving comments for improvement if you believe the question can be reworded to fit within the scope. Read more about closed questions here.

2 Answers

Yes, you can create a symbolic link to a symbolic link.

EXAMPLE:

$ ln -s tmp.txt symlink
$ ln -s symlink symlink2
$ ls -l tmp.txt symlink symlink2
lrwxrwxrwx    1 paulsm   users           7 May 18 09:51 symlink -> tmp.txt
lrwxrwxrwx    1 paulsm   users           7 May 18 09:51 symlink2 -> symlink
-rw-r--r--    1 paulsm   users          91 Nov 22 14:12 tmp.txt
share|improve this answer
I try the above command and the 'koko' link is an invalid link. – George Kastrinis May 18 '12 at 16:53
check my edit :) – George Kastrinis May 18 '12 at 16:58
@George Kastrinis: type in my commands - substituting only "tmp.txt" - and it'll work fine. You can link to either a file (as in my example), or directory - they will both work fine. Type in the commands VERBATIM (no trailing slashes, no "foo", no "bar", no "koko") and you'll see it work for yourself :) – paulsm4 May 18 '12 at 18:25
It works fine, when symlink and symlink2 are just filenames (in my current directory). But in what I want, symlink and symlink might be in different directories. And then somethink breaks. (I tried with tmp.txt -> /etc/apache2 | symlink -> FOO/symlink1 | symlink2 -> LALA/symlink2 - where FOO and LALA are directories) – George Kastrinis May 18 '12 at 19:01

Your example does not work.

filip@srv:~$ touch foo
filip@srv:~$ ln -s foo bar
filip@srv:~$ ln -s bar koko
filip@srv:~$ ls -l foo bar koko
lrwxrwxrwx 1 filip filip 3 2012-05-18 19:33 bar -> foo
-rw-r--r-- 1 filip filip 0 2012-05-18 19:33 foo
lrwxrwxrwx 1 filip filip 3 2012-05-18 19:33 koko -> bar
share|improve this answer
I don't understand what you mean that it doesn't work. – George Kastrinis May 18 '12 at 17:38
George, you wrote "ls shows koko as an invalid link" while I prove that ls shows koko as a valid link. – filiprem May 21 '12 at 12:03
Follow my example exactly and it will not work. More here superuser.com/questions/426162/… – George Kastrinis May 22 '12 at 15:46
the other one is different! – filiprem May 23 '12 at 8:03

Not the answer you're looking for? Browse other questions tagged or ask your own question.