How to unmount Google Bucket in Linux created with gcsfuse

3/4/2017

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?

-- alphanumeric
gcsfuse
google-compute-engine
google-kubernetes-engine
linux
ubuntu

1 Answer

3/5/2017

According to the documentation, you want:

fusermount -u /home/shared/local_folder/
-- jacobsa
Source: StackOverflow