/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.[div align=\"right\"][a href=\"index.php?act=findpost&pid=166268\"][{POST_SNAPBACK}][/a][/div]
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.