Too many levels of symbolic links osx Lion

无人久伴 提交于 2019-12-03 21:56:53

If go to:

cd /

and ls -la outputs:

lrwxr-xr-x 1 root wheel 10 14 Mar 09:13 Developer -> /Developer 

That's a problem. /Developer should be a folder, not a symlink pointing to itself.

Find out where the original /Developer directory is and delete the symlink, so you can create one pointing to it. If you can't find it, consider reinstalling XCode.

Use absolute paths when making symlinks:

Doesn't (always) work:

ln -s file ../new/path

Works (more often):

ln -s /full/path/to/old/place/ /full/path/to/new/place/
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!