FUSE error: Transport endpoint is not connected

后端 未结 3 1764
庸人自扰
庸人自扰 2020-12-23 11:21

I\'m trying to implement the FUSE filesystem. I am receiving this error:

cannot access MountDir: Transport endpoint is not connected

3条回答
  •  囚心锁ツ
    2020-12-23 11:39

    This typically is caused by the mount directory being left mounted due to a crash of your filesystem. Go to the parent directory of the mount point and enter fusermount -u YOUR_MNT_DIR.

    If this doesn't do the trick, do sudo umount -l YOUR_MNT_DIR.

提交回复
热议问题