Parece que seu PATH
está confuso. Como no link . Para citar:
"I believe it is saying there are too many levels of symbolic links while trying to locate the... command itself [within the path]."
Para uma saída fácil, você pode reinstalar. No entanto, isso pode não ser uma opção.
Para localizar o problema, tente procurar em seu caminho por links simbólicos. Aqui está um pequeno script para fazer isso. Basta fazer um arquivo, copie isso em:
for path in ${PATH//:/ }; do
echo "Printing links for: $path"
readlink "$path"
echo "Done."
done
Em seguida, execute o arquivo com bash [FILENAME]
, em que filename é o nome do arquivo que você acabou de criar.