4

ls -l shows:

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

Trying to re-mount with the command used initially also throws the same error:

$ 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
toraritte
  • 1,128

2 Answers2

4

Found the solution on the rclone forum:

  1. Unmount with fusermount -uz gdrive-root
  2. Re-mount with the command you usually use (in my case, it's in the question above)

Update from @nnunes:

Using fusermount -z ... means "the mount point is no longer associated with the mount, but the mount doesn't disappear until all open files on that mount are closed" (source).

toraritte
  • 1,128
0

umount command worked when fusermount failed for me:

umount -l  /PATH/MOUNTED

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

Bastion
  • 111