Mount an S3 bucket as a local folder on Linux so you can browse and copy files with a regular file manager or shell commands.
Stream large datasets from S3 directly into data processing scripts without downloading everything first.
Access DigitalOcean Spaces or Google Cloud Storage as a local drive using the same FUSE-based approach as Amazon S3.
Read files from cloud storage in a shell script without using the AWS CLI by treating the bucket as a mounted folder.
Requires FUSE installed on the host and valid AWS credentials or equivalent for other cloud providers.
Goofys lets you attach an Amazon S3 bucket to your computer so that it appears as a regular folder. S3 is Amazon's cloud storage service, and normally you interact with it through APIs or dedicated tools. Goofys uses a technology called FUSE to make S3 behave like a local drive, so you can navigate it with a file browser, copy files to it, or read from it the same way you would with a folder on your hard drive. The project describes itself as a "Filey System" rather than a file system because it trades full compatibility for speed. Standard file systems support features like random writes at any position in a file, fine-grained permissions, symbolic links, and renaming large folders. Goofys does not support all of those, because supporting them over S3 would require extra round trips to the cloud and slow things down. It only supports writing files sequentially, does not track file ownership or permissions in the usual way, and does not support symbolic links or hard links. Beyond Amazon S3, Goofys also works with several other cloud storage providers that implement a compatible API, including Ceph-based services like DigitalOcean Spaces, Google Cloud Storage, Wasabi, and Scaleway. It additionally supports Microsoft Azure Blob Storage and Azure Data Lake through a separate configuration described in a companion readme. Installation is available as a pre-built binary for Linux, through Homebrew for macOS, or by building from source using the Go programming language. Credentials for your cloud storage account are read from standard AWS credential files or environment variables. The project is open source under the Apache License 2.0.
← kahing on gitmyhub — every repo by this author, as a profile.
Verify against the repo before relying on details.