ฉันได้รับข้อผิดพลาดนี้จากคำสั่ง sshfs จาก Fedora 17 linux ไปยัง debian linux บน Mindstorms EV3 Brick ผ่าน LAN และผ่านการเชื่อมต่อไร้สาย
คำสั่ง 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/