আমি এই ত্রুটিটি ফেডোরা 17 লিনাক্স থেকে ল্যানের উপরে মাইন্ডস্টর্মস ইভি 3 ইটের উপর ডেবিয়ান লিনাক্স এবং s বেতার সংযোগের মাধ্যমে sshfs কমান্ড থেকে পেয়েছি।
বাশ আদেশ:
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
এই অতিরিক্ত এসএসএফএস অপশনগুলি উপরের ত্রুটিটিকে সম্মতিতে বাধা দেয়:
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/