Muitos níveis de links simbólicos

0

Eu quero simplesmente vincular um arquivo de origem a um arquivo de destino. No entanto, recebo Too many levels of symbolic links e não sei o que há de errado com meus arquivos. Aqui estão as informações

[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

Como posso consertar isso?

    
por mahmood 15.03.2016 / 17:03

1 resposta

1

Você criou um link simbólico em /usr/bin chamado matlab que vincula a si mesmo.

    
por 15.03.2016 / 17:24