How to unmount Google Bucket in Linux created with gcsfuse
Asked Answered
P

1

17

I have mapped Google Storage bucket as ubuntu drive with:

gcsfuse googlebucketname  /home/shared/local_folder/

How to reverse the previous step by unmounting /home/shared/local_folder/ from the linked bucket?

Parasitize answered 4/3, 2017 at 22:57 Comment(2)
I'm voting to close this question as off-topic because it's belong to askubuntu.comTechnology
Stack Overflow is a site for programming and development questions. This question appears to be off-topic because it is not about programming or development. See What topics can I ask about here in the Help Center. Perhaps Super User or Unix & Linux Stack Exchange would be a better place to ask. Also see Where do I post questions about Dev Ops?Lamson
H
26

According to the documentation, you want:

fusermount -u /home/shared/local_folder/
Hoist answered 5/3, 2017 at 20:26 Comment(1)
The regular umount command should work as well: sudo umount /mnt/gcs-bucketParasitize

© 2022 - 2024 — McMap. All rights reserved.