मुझे यह त्रुटि Fedora 17 लाइन से sshfs कमांड से लेकर LAN पर deststorms EV3 ईंट पर वायरलेस कनेक्शन के माध्यम से debian linux तक मिलती है।
बैश कमांड:
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-nnn/