Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to use gcsfuse allow_other option?

How should I write the command in Google Cloud SSH session to a Ubuntu instance? I tried gcsfuse <bucket> <mount point> --allow_other, it gives me an error that gcsfuse works exactly with two arguments.

like image 813
user6232516 Avatar asked Apr 20 '16 21:04

user6232516


1 Answers

I believe you want

gcsfuse -o allow_other <bucket> <mount_point>

But please consider whether you really need this option, and only use it if you know what you're doing. It overrides security restrictions from fuse that are in place for a reason.

like image 175
jacobsa Avatar answered Oct 17 '22 19:10

jacobsa