What are the use cases for a read only file system?
DwarFS: A fast high compression read-only file system
21–30 of 112 posts
Re: DwarFS: A fast high compression read-only file system
#22Why not use BTRFS with file deduplication and transparent compression (zstd specifically)?
Re: DwarFS: A fast high compression read-only file system
#23Why not use BTRFS with file deduplication and transparent compression (zstd specifically)?
Re: DwarFS: A fast high compression read-only file system
#24> I started working on DwarFS in 2013 and my main use case and major motivation was that I had several hundred different versions of Perl that were taking up something around 30 gigabytes of disk space, and I was unwilling to spend more than 10% of my hard drive keeping them around for when I happened to need them. It fills me with joy that someone has been coding a fs for 7 years due to perl installs taking too much…
Nowadays you can have the same problem with Python and Javascript too!
Re: DwarFS: A fast high compression read-only file system
#25What are the use cases for a read only file system?
* can search archived files potentially faster because read access is potentially faster
* fit more data on bootable media
Re: DwarFS: A fast high compression read-only file system
#26Re: DwarFS: A fast high compression read-only file system
#27What are the use cases for a read only file system?
Just to clarify that last statement (and something to think about) with HDD's you want duplicate assets so that you don't cause seeks which are VERY slow on 5400rpm HDD's still found on some/alot of systems.
Re: DwarFS: A fast high compression read-only file system
#28I'm curious, why do you have so many perl installations around. I thought I'd got a fair number of python venvs kicking around for each of the repos I'm dealing with, but nowhere near that many.
Re: DwarFS: A fast high compression read-only file system
#29Why not use BTRFS with file deduplication and transparent compression (zstd specifically)?
Is Btrfs stable yet?
Re: DwarFS: A fast high compression read-only file system
#30I wish there was a semi-compressed transparent filesystem layer which slowly compresses the least recently used files in the background, and un-compresses files upon use. That way you could store much more mostly unused content than space on the disk, without sacrificing accessibility.
I believe NT file compression works like this, and before that MSDOS "DriveSpace" ...