このエラーは、LAN経由でワイヤレス接続を介して、Medstorms EV3ブリック上でFedora 17 linuxからdebian linuxへのsshfsコマンドから発生します。
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/