2

I have mounted a bucket from my Google Cloud Storage account using gcsfuse. I'm surprised to see that none of the file from that bucket are now on my machine. This is a Google "instance" Debian 8, but I suspect the problem is more my not understanding how gcsfuse works. Should I not see my files?

Randy L
  • 14,384
  • 14
  • 44
  • 73

2 Answers2

2

You are likely running into the issues with implicit directories.

jacobsa
  • 5,719
  • 1
  • 28
  • 60
2

I also had this issue. The answer @jacobsa addressed the same issue for me.

Instead of mounting with

gcsfuse my-bucket /path/to/mount

I used

gcsfuse --implicit-dirs my-bucket /path/to/mount

I also checked that the bucket is setup with the right permissions by adding myself as the Owner in Edit bucket permissions

Dmitriy R. Starson
  • 1,180
  • 8
  • 9