Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to unmount Google Bucket in Linux created with gcsfuse

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?

like image 756
alphanumeric Avatar asked Mar 04 '17 22:03

alphanumeric


1 Answers

According to the documentation, you want:

fusermount -u /home/shared/local_folder/
like image 197
jacobsa Avatar answered Oct 13 '22 20:10

jacobsa