当我试图卸载FUSE文件系统时,我得到一个错误:
root@ubuntu:/home/fufs/src# fusermount -u /tmp/kpfss
fusermount: failed to unmount /tmp/kpfss: Invalid argument
root@ubuntu:/home/fufs/src# fusermount -z -u /tmp/kpfss
fusermount: failed to unmount /tmp/kpfss: Invalid argument如何卸载文件系统?谢谢。
发布于 2013-12-20 20:32:04
以前遇到过这个问题,你可能会发现使用umount很有帮助,比如:
umount -f /tmp/kpfss # or whatever the mount point is当我看到这个问题时,与远程服务器的连接断开了,并且试图访问挂载点时锁定了shell。shell进程甚至不能被杀死。
使用umount似乎有助于对此进行排序。
发布于 2013-08-14 06:24:43
在开发fuse文件系统时,我经常遇到这样的情况: fuse文件系统在无限的while循环中锁定,或者seg以某种方式出错。我知道如何释放它的唯一方法是使用ps -ef | grep name_of_fuse_filesystem_process并杀死相应的pid。
https://stackoverflow.com/questions/11844289
复制相似问题