In Romania we have 10gbps in some regions. 2.5gbps is becoming common in cities and 1gbps is the norm everywhere. You don't have to use Switzerland as a benchmark here!
If you are old enough you might remember a similar fine for those nice search bars everyone was getting by default all over the place with every driver install and every program you downloaded. That was a fun time too!
ZeroFS Turns S3 Buckets Into Linux Filesystems and Block Devices
ZeroFS is a new open-source project that exposes S3-compatible storage over NFS, 9P, and NBD for Linux systems.
ByBobby BorisovOnJune 15, 2026
ZeroFS Turns S3 Buckets Into Linux Filesystems and Block Devices
Most people know S3-compatible storage, an object storage that follows Amazon S3’s API model, as a place to keep backups, archives, images, logs, or application data. This includes AWS S3, commercial S3-compatible cloud services, and self-hosted platforms such as Garage, SeaweedFS, and RustFS.
It is cheap, widely available, and works well at large scale, but it does not normally behave like the storage Linux users deal with every day. ZeroFS tries to change that.
It is a new open-source project that presents S3-compatible object storage as Linux-accessible filesystems and block devices, enabling broader use of object storage beyond backup, archival, or application-specific workflows.
On the technical side, ZeroFS operates between the storage backend and the operating system, serving data as a POSIX-style filesystem over NFS or 9P, or as raw block storage via NBD. This allows the same S3-compatible backend to be accessed as files and directories or as a block device that can be formatted with filesystems like ext4 or used by storage stacks such as ZFS.
The project’s main goal is simple: making object storage usable where Linux systems expect filesystem or block-device access. Rather than relying on FUSE mounts or custom S3 API applications, ZeroFS uses protocols already supported by operating systems. According to the documentation, this includes file-level access through NFS and 9P, and block-level access through NBD.
Here’s a little more about them. NFS provides ZeroFS with broad compatibility, as NFS clients are practically available on almost every Unix-like OS. The 9P option targets Linux environments specifically, offering stronger POSIX compliance and advanced caching. NBD (Network Block Device protocol) is unique in that it enables S3-compatible storage to appear as a raw block device.
According to the project’s documentation, NBD devices created by ZeroFS can be used for ext4 filesystems, ZFS pools, databases, and VM boot disks. In other words, ZeroFS is not limited to presenting files from object storage, but it also supports Linux storage layers on top of an S3-compatible backend.
On the security side, ZeroFS enforces mandatory encryption. Data is encrypted before upload using XChaCha20-Poly1305, with keys derived from a password via Argon2id. There is no unencrypted mode, ensuring object storage providers only receive encrypted data.
Additionally, file data is compressed before encryption, with zstd as the default and LZ4 as a faster alternative. Plus, the compression method can be changed without migrating existing data, and previously written chunks remain accessible.
Regarding performance, and more specifically caching, ZeroFS supports memory and local disk caching to mitigate object-storage latency, a well-known limitation when using S3-compatible storage as a traditional filesystem. Additional features include checkpoints, read replicas, TRIM support, optional WAL storage, a standalone compactor, and a web UI with a file manager, dashboard, and browser terminal.
Still, ZeroFS should be evaluated carefully. Object storage differs significantly from local disks or traditional network storage in latency and consistency, and using it as a filesystem or block device introduces operational trade-offs.
But even with that in mind, ZeroFS is a compelling option for testing cloud-backed filesystems, self-hosted storage, encrypted remote storage, and experimental block-device workflows on object storage. The project is written in Rust and released as free and open-source software under the AGPL-3.0 license.
Additional details, installation instructions, and configuration examples are available on the project’s official website and GitHub repository.
But coal is so beautiful and clean. Why use such an ugly way to produce energy. God intended us to use coal not the sun. The sun is for looking straight into it during an eclipse!
No worries a new college wing of a hefty donation in the right place will clean that for a few more years... It worked before why not now
Lol i just noticed that my autocorrect got me good! I meant water is wet
So, what is wet?
Quick answer? Yes! Yes he did. Longer more indepth answer: absolutely he did!
Covering fire!
That you find in isle 4: 3 dimensions or more and farm equipment
Also most of you didn't vote or for some unexplainable reason voted for the orange buffoon... twice!
Yeah fuck around with hydrofluoric acid! Who needs gloves am I right?
No but the innovation and the economy. The curve must go up!
Many thanks!
Can you post a PDF of the article?
In Romania we have 10gbps in some regions. 2.5gbps is becoming common in cities and 1gbps is the norm everywhere. You don't have to use Switzerland as a benchmark here!
Doesn't work
If you are old enough you might remember a similar fine for those nice search bars everyone was getting by default all over the place with every driver install and every program you downloaded. That was a fun time too!
Ah my bad? Sounds cool then!
Kdeconnect?
Instructions unclear
Season passes!
I got you:
ZeroFS Turns S3 Buckets Into Linux Filesystems and Block Devices
ZeroFS is a new open-source project that exposes S3-compatible storage over NFS, 9P, and NBD for Linux systems.
ZeroFS Turns S3 Buckets Into Linux Filesystems and Block Devices
Most people know S3-compatible storage, an object storage that follows Amazon S3’s API model, as a place to keep backups, archives, images, logs, or application data. This includes AWS S3, commercial S3-compatible cloud services, and self-hosted platforms such as Garage, SeaweedFS, and RustFS.
It is cheap, widely available, and works well at large scale, but it does not normally behave like the storage Linux users deal with every day. ZeroFS tries to change that.
It is a new open-source project that presents S3-compatible object storage as Linux-accessible filesystems and block devices, enabling broader use of object storage beyond backup, archival, or application-specific workflows.
On the technical side, ZeroFS operates between the storage backend and the operating system, serving data as a POSIX-style filesystem over NFS or 9P, or as raw block storage via NBD. This allows the same S3-compatible backend to be accessed as files and directories or as a block device that can be formatted with filesystems like ext4 or used by storage stacks such as ZFS.
The project’s main goal is simple: making object storage usable where Linux systems expect filesystem or block-device access. Rather than relying on FUSE mounts or custom S3 API applications, ZeroFS uses protocols already supported by operating systems. According to the documentation, this includes file-level access through NFS and 9P, and block-level access through NBD.
Here’s a little more about them. NFS provides ZeroFS with broad compatibility, as NFS clients are practically available on almost every Unix-like OS. The 9P option targets Linux environments specifically, offering stronger POSIX compliance and advanced caching. NBD (Network Block Device protocol) is unique in that it enables S3-compatible storage to appear as a raw block device.
According to the project’s documentation, NBD devices created by ZeroFS can be used for ext4 filesystems, ZFS pools, databases, and VM boot disks. In other words, ZeroFS is not limited to presenting files from object storage, but it also supports Linux storage layers on top of an S3-compatible backend.
On the security side, ZeroFS enforces mandatory encryption. Data is encrypted before upload using XChaCha20-Poly1305, with keys derived from a password via Argon2id. There is no unencrypted mode, ensuring object storage providers only receive encrypted data.
Additionally, file data is compressed before encryption, with zstd as the default and LZ4 as a faster alternative. Plus, the compression method can be changed without migrating existing data, and previously written chunks remain accessible.
Regarding performance, and more specifically caching, ZeroFS supports memory and local disk caching to mitigate object-storage latency, a well-known limitation when using S3-compatible storage as a traditional filesystem. Additional features include checkpoints, read replicas, TRIM support, optional WAL storage, a standalone compactor, and a web UI with a file manager, dashboard, and browser terminal.
Still, ZeroFS should be evaluated carefully. Object storage differs significantly from local disks or traditional network storage in latency and consistency, and using it as a filesystem or block device introduces operational trade-offs.
But even with that in mind, ZeroFS is a compelling option for testing cloud-backed filesystems, self-hosted storage, encrypted remote storage, and experimental block-device workflows on object storage. The project is written in Rust and released as free and open-source software under the AGPL-3.0 license.
Additional details, installation instructions, and configuration examples are available on the project’s official website and GitHub repository.
But coal is so beautiful and clean. Why use such an ugly way to produce energy. God intended us to use coal not the sun. The sun is for looking straight into it during an eclipse!