我从Fedora 17 linux的sshfs命令到通过局域网并通过无线连接的Mindstorms EV3砖块上的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/