mirror of
https://github.com/s3fs-fuse/s3fs-fuse.git
synced 2026-04-25 21:35:58 +03:00
[GH-ISSUE #191] Permissons of mounted bucket don't allow reading #108
Labels
No labels
bug
bug
dataloss
duplicate
enhancement
feature request
help wanted
invalid
need info
performance
pull-request
question
question
testing
No milestone
No project
No assignees
1 participant
Notifications
Due date
No due date set.
Dependencies
No dependencies set.
Reference
starred/s3fs-fuse#108
Loading…
Add table
Add a link
Reference in a new issue
No description provided.
Delete branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Originally created by @bitwombat on GitHub (May 28, 2015).
Original GitHub issue: https://github.com/s3fs-fuse/s3fs-fuse/issues/191
Using Ubuntu 14.04 LTS, I can mount but see this:
I'm afraid to chmod that... is there a good reason nobody can read that dir?
@kahing commented on GitHub (May 28, 2015):
Was it a directory that was written through s3fs or through some other applications? s3fs relies on its own metadata to store the permissions, without those metadata it's expected to show what you see here
@bitwombat commented on GitHub (May 28, 2015):
It's an existing bucket, so it was created/written via the web interface.
What do I do in that use case?
@bitwombat commented on GitHub (Jun 9, 2015):
Put another way, can I initialise the metadata from an existing bucket?
@kahing commented on GitHub (Jun 9, 2015):
Could you try chmod'ing the files manually?
@ertrzyiks commented on GitHub (Jun 30, 2015):
That happens when you upload files from website. S3 bucket store permissions in metadata field called
x-amz-meta-modeand default value is 0000. Once you set chmod manually on mounted folder, s3fs will update that field and your chmod will be remembered for next time you mount your bucket.@bitwombat commented on GitHub (Jun 30, 2015):
Ah, beauty. Thanks ertrzyiks.