QUOTE(Capn_Fish @ Aug 15 2007, 10:48 AM)
CODE
/stuff#mkdir test
/stuff#ln -s test /test
/stuff#cd /test
-bash: cd: /test: Too many levels of symbolic links
/stuff#
What am I doing wrong, then? There's nothing in the folder.
Try using a full path. I believe
ln uses relative paths, which has caused confusing problems for me before. With relative paths, you're linking /test to itself.
ln -s /stuff/test /test should accomplish what it seems you're trying to do.