Recibo este error del comando sshfs de Fedora 17 linux a debian linux en el ladrillo Mindstorms EV3 a través de la LAN y a través de una conexión inalámbrica.
Comando 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
Esto se soluciona con el siguiente comando y volviendo a intentarlo:
fusermount -u /mnt/ev3
Estas opciones adicionales de sshfs evitan que el error anterior coincida:
sudo sshfs -d -o allow_other -o reconnect -o ServerAliveInterval=15 root@myremoteserver.com:/var/lib/redmine/plugins /mnt -p 12345 -C
Para usar lo allow_other
anterior, debe descomentar la última línea en /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
Fuente: http://slopjong.de/2013/04/26/sshfs-transport-endpoint-is-not-connected/