web-dev-qa-db-ja.com

シンボリックリンクのレベルが多すぎます

ソースファイルをリンク先ファイルにリンクしたいだけです。しかし、私はToo many levels of symbolic linksを取得し、ファイルの何が問題なのかわかりません。こちらが情報です

[root@cluster ~]# ls /export/apps/mathematics/matlab2012a/bin/
activate_matlab.sh    insttype.ini     license.txt  mbuildopts.sh   
mw_mpiexec    registry    deactivate_matlab.sh  lcdata_utf8.xml
m3iregistry  mcc    mw_smpd     untitled.m    deploytool    
lcdata.xml     matlab     mex   optsetup.sh   util  
engopts.sh    lcdata.xsd     matopts.sh   mexext  output.txt    
worker    glnxa64   ldd    mbuild       mexopts.sh     ProductRoots

[root@cluster ~]# ln -s /export/apps/mathematics/matlab2012a/bin/matlab /usr/bin/matlab
ln: accessing `/usr/bin/matlab': Too many levels of symbolic links

[root@cluster ~]# ls /usr/bin/matlab
ls: cannot access /usr/bin/matlab: Too many levels of symbolic links

[root@cluster ~]# which matlab
/export/apps/mathematics/matlab2012a/bin/matlab



[root@cluster ~]# ls -l /usr/bin | grep matlab
lrwxrwxrwx 1 root root           8 Nov 20  2014 matlab -> ./matlab
[root@cluster ~]# /usr/bin/matlab
bash: /usr/bin/matlab: Too many levels of symbolic links

どうすれば修正できますか?

2
mahmood

matlabという名前の/usr/binに、それ自体にリンクするシンボリックリンクを作成しました。

2
choroba