Whatever happened to compressed read/write filesystems

archivingcompressiondisk-spacefile-archiverfilesystems

Back in the 90s, my home computer was an Acorn Archimedes. It had on it a piece of software called ArcFS, which allowed you to create compressed archives, a bit like zip files.

Unlike zip files, they could be mounted as a disk, a bit like dmg files on a Mac.

Unlike dmg files, they were compressed and writable.

If we could do this in the 90s, why can't we do this now? Today I use a Mac, and while I can create compressed disk images, they are not writable. Conversely, writable disk images are not compressed.

What is today's equivalent of ArcFS, and why isn't it more common?

Best Answer

I'm not sure which ones are available for Mac OS -- but there are still a lot of r/w compressed filesystems around:

  • e2compr being a kernel-patch for EXT2
  • Fuse offers a list of compressed filesystems, including such with r/w support like e.g. compFUSEd and LZOlayer_fs
  • Solid File Sysem is multi-platform (explicitly states support for Mac OS X) and supports encryption as well as compression

So it is still possible, and is still done. Why it is not more widely known, I cannot tell...

Related Question