I'm actually not a newbie to linux/linux mint, but this kind of feels like a newbie question....
I have problems creating symbolic links
Code: Select all
erae@home ~ $ echo "test" > file
erae@home ~ $ ln -s file link && cat link
test
erae@home ~ $ ln -s file dir/link && cat dir/link
cat: dir/link: No such file or directory
erae@home ~ $ ls -l dir/
total 0
lrwxrwxrwx 1 erae erae 4 2009-10-14 20:32 link -> file
erae@home ~ $ ls -ld dir/
drwxr-xr-x 2 erae erae 4096 2009-10-14 20:32 dir/
sometimes instead of "No such file...." it says "Too many levels of symbolic links"
hard linking works fine.
any ideas how to fix this?
Code: Select all
erae@home ~ $ uname -a
Linux home 2.6.28-11-generic #42-Ubuntu SMP Fri Apr 17 01:57:59 UTC 2009 i686 GNU/Linux