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?