이 오류는 Fedora 17 linux에서 Mindstorms EV3 브릭의 debian linux로 LAN 및 무선 연결을 통해 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/