I am not able to mount a specific folder inside the google storage bucket
On OS X, this program allows you to mount buckets using the mount command. (On Linux, only root can do this.)
mount -t gcsfuse -o rw,user my-bucket /path/to/mount/point
On both OS X and Linux, you can also add entries to your /etc/fstab
file like the following:
my-bucket /mount/point gcsfuse rw,noauto,user
Can somebody help me?
my-bucket:foldername /mount/point gcsfuse rw,noauto,user
This doesn't work for me
my-bucket:foldername
? Is that a widely used syntax for other file systems? (If so, do you mind linking to some examples?) – Reconcilable