Introduction
I am using gcsfuse to mount my Cloud Storage bucket as a filesystem in my Linux instance hosted on GCE.
Following the documentation from gcsfuse, it recommends to not use "root" to mount it, as the user who mounts the filesystem will be the owner. Hence, you won't be able to write or read objects as a normal user.
The mounting point that I intend to use is /mnt/, but it requires system administrator permissions and I would like to use a non-root user.
Question
How could I circumvent this limitation? I followed this other question, but to no avail.