Я получаю эту ошибку от команды sshfs из Fedora 17 linux в debian linux на модуле Mindstorms EV3 по локальной сети и через беспроводное соединение.
Команда Bash:
el@defiant /mnt $ sshfs root@192.168.13.102:/root -p 22 /mnt/ev3
fuse: bad mount point `/mnt/ev3': Transport endpoint is not connected
Это можно исправить с помощью следующей команды и повторной попытки:
fusermount -u /mnt/ev3
Эти дополнительные параметры sshfs предотвращают совпадение указанной выше ошибки:
sudo sshfs -d -o allow_other -o reconnect -o ServerAliveInterval=15 root@myremoteserver.com:/var/lib/redmine/plugins /mnt -p 12345 -C
Чтобы использовать allow_other
вышесказанное, вам необходимо раскомментировать последнюю строку в /etc/fuse.conf
:
# Set the maximum number of FUSE mounts allowed to non-root users.
# The default is 1000.
#
#mount_max = 1000
# Allow non-root users to specify the 'allow_other' or 'allow_root'
# mount options.
#
user_allow_other
Источник: http://slopjong.de/2013/04/26/sshfs-transport-endpoint-is-not-connected/