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/
What's wrong with it?
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).
Most helpful comment
Looks like you mounted to
~/googledrivebut tried to unmount from~/google-drive(note the dash).