无法进入使用 rclone 安装的 Google Drive 目录:“传输端点未连接”

无法进入使用 rclone 安装的 Google Drive 目录:“传输端点未连接”

ls -l显示:

ls: cannot access 'gdrive-root': Transport endpoint is not connected
total 42M
d?????????   ? ?         ?            ?            ? gdrive-root

尝试使用最初使用的命令重新挂载也会引发相同的错误:

$ rclone --vfs-cache-mode writes mount gdrive: gdrive-root --daemon
2022/01/30 15:29:14 Fatal error: Can not open: gdrive-root: open gdrive-root: transport endpoint is not connected

答案1

成立rclone论坛上的解决办法

  1. 卸载fusermount -uz gdrive-root
  2. 使用您通常使用的命令重新挂载(就我而言,它是上面的问题)

来自@的更新努内斯

使用fusermount -z ...方式“挂载点不再与挂载相关联,但挂载不会消失,直到该挂载上的所有打开的文件都关闭为止“(来源)。

答案2

当 fusermount 失败时,umount 命令起作用:

umount -l  /PATH/MOUNTED

看:https://syntaxfix.com/question/8248/transport-endpoint-is-not-connected

相关内容