Bu hatayı Fedora 17 linux'tan Mindstorms EV3 tuğlasındaki debian linux'a LAN üzerinden ve kablosuz bir bağlantı üzerinden sshfs komutundan alıyorum.
Bash komutu:
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
Bu, aşağıdaki komutla giderilir ve tekrar denenir:
fusermount -u /mnt/ev3
Bu ek sshfs seçenekleri, yukarıdaki hatanın uyuşmasını engeller:
sudo sshfs -d -o allow_other -o reconnect -o ServerAliveInterval=15 root@myremoteserver.com:/var/lib/redmine/plugins /mnt -p 12345 -C
allow_other
Yukarıdakileri kullanmak için, son satırın açıklamasını kaldırmanız gerekir /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
Kaynak: http://slopjong.de/2013/04/26/sshfs-transport-endpoint-is-not-connected/