goofys
goofys copied to clipboard
a high-performance, POSIX-ish Amazon S3 file system written in Go
Fix for: https://github.com/kahing/goofys/issues/230 Parent process was blocked waiting on `wg` sync.WaitGroup preventing autofs from managing the forked daemon child process. Sending the signal to parent once child is ready ensures...
Hey, I was able to get this working w/ DigitalOcean with the following: ``` goofys -f --endpoint https://nyc3.digitaloceanspaces.com/ --file-mode=0777 --dir-mode=0777 private ~/TestMnt3 ``` This mounts the `private` bucket to the...
S3 support new checksums crc32/crc32c/sha1/sha256, which is faster, as descriped in https://d1.awsstatic.com/events/Summits/reinvent2022/STG209_Get-started-with-checksums-in-Amazon-S3-for-data-integrity-checking.pdf
`github.com/Azure/azure-sdk-for-go/services/storage/mgmt/2019-04-01/storage` is used in `conf_azure.go` and it was deprecated in Sept. of 2023. Any plans to move to the recommended replacement?
Upgrade the gopsutil module to facilitate the correct compilation of the goofys binary on macOS M1.
Hi @kahing We have mounted an s3 bucket via goofys in an ubuntu machine. But when we are trying to execute a python command in the bucket to run some...
I mounted my s3 bucket with goofys. I am a root user in linux-ubuntu. I can able to access my buckets through goofys. The problem is while running this command...
Hello, I use goofys to mount minio.But I want use setfacl to set permission.Could goofys support setfacl?
I mounted the bucket from S3 with the following command `sudo goofys -o allow_other mybucket /mnt/buckets/mybucket/` inside `mybucket`, there are a bunch of subdirectories. When I do rsync or cp...
What does the second set of default permissions mean in this? ``` --file-mode value Permission bits for files. (default: 0644) (default: 420) ```