WeSearch

Erofs – Enhanced Read-Only File System – The Linux Kernel Documentation

·2 min read · 0 reactions · 0 comments · 12 views
#linux#filesystem#data compression
⚡ TL;DR · AI summary

EROFS is an enhanced read-only file system that utilizes fixed-sized output compression for data. This method allows for higher compression ratios by leveraging historical dictionaries from popular LZ77-based algorithms. The system introduces logical clusters to manage variable-sized extents and supports big physical clusters for improved data handling.

Key facts
Original article
Kernel
Read full at Kernel →
Opening excerpt (first ~120 words) tap to expand

Data compression¶ EROFS implements fixed-sized output compression which generates fixed-sized compressed data blocks from variable-sized input in contrast to other existing fixed-sized input solutions. Relatively higher compression ratios can be gotten by using fixed-sized output compression since nowadays popular data compression algorithms are mostly LZ77-based and such fixed-sized output approach can be benefited from the historical dictionary (aka. sliding window). In details, original (uncompressed) data is turned into several variable-sized extents and in the meanwhile, compressed into physical clusters (pclusters).

Excerpt limited to ~120 words for fair-use compliance. The full article is at Kernel.

Anonymous · no account needed
Share 𝕏 Facebook Reddit LinkedIn Threads WhatsApp Bluesky Mastodon Email

Discussion

0 comments

More from Kernel