Google-drive-ocamlfuse: How to unmount?

Created on 10 Nov 2019  路  4Comments  路  Source: astrada/google-drive-ocamlfuse

Hello, I have mounted Google Drive to my local folder with the following command:

google-drive-ocamlfuse ~/googledrive

Now I'm trying to unmount it, but it doesn't work:

fusermount -u ~/googledrive

I get this error: fusermount: entry for /home//google-drive not found in /etc/mtab

What's wrong with it?

Most helpful comment

Looks like you mounted to ~/googledrive but tried to unmount from ~/google-drive (note the dash).

All 4 comments

Try to force it with e.g. -fu. You can check if it's still mounted with df -h.

fusermount: invalid option -- 'f'

Try -z: fusermount -z -u ~/googledrive

This works for me

Looks like you mounted to ~/googledrive but tried to unmount from ~/google-drive (note the dash).

Was this page helpful?
0 / 5 - 0 ratings

Related issues

acardona picture acardona  路  3Comments

R-Chandra picture R-Chandra  路  3Comments

kellnerp picture kellnerp  路  7Comments

Zibri picture Zibri  路  7Comments

leighsjo picture leighsjo  路  3Comments