SquashFS

From HandWiki
Short description: Compressed, read-only file system for Linux
Squashfs
Developer(s)Phillip Lougher, Robert Lougher
Introduced2002 with Linux
Limits
Max. volume size16 EiB (264) bytes
Max. file size16 EiB (264) bytes
Features
AttributesPOSIX and extended attributes
Transparent compressiongzip LZMA LZO LZMA2 LZ4 Zstd
Other
Supported operating systemsLinux
Websitegithub.com/plougher/squashfs-tools

Squashfs is a compressed read-only file system for Linux. Squashfs compresses files, inodes and directories, and supports block sizes from 4 KiB up to 1 MiB for greater compression. Several compression algorithms are supported. Squashfs is also the name of free software, licensed under the GPL, for accessing Squashfs filesystems.

Squashfs is intended for general read-only file-system use and in constrained block-device memory systems (e.g. embedded systems) where low overhead is needed.

Uses

Squashfs is used by the Live CD versions of Arch Linux, Debian, Fedora, Gentoo Linux, Linux Mint, openSUSE, Salix, Ubuntu, NixOS, Clonezilla, Kali Linux, KDE neon and on embedded distributions such as the OpenWrt[1] and DD-WRT router firmware. It is also used in Chromecast,[2] in Tiny Core Linux for packaging extensions, and for the system partitions of some Android releases (Android Nougat).[3] It is often combined with a union mount filesystem, such as UnionFS, OverlayFS, or aufs, to provide a read-write environment for live Linux distributions. This takes advantage of both Squashfs's high-speed compression abilities and the ability to alter the distribution while running it from a live CD. Distributions such as Debian Live, Mandriva One, Puppy Linux, Salix Live and Slax use this combination. The AppImage project, which aims to create portable linux applications, uses squashfs for creating appimages. The Snappy package manager also uses squashfs for its ".snap file format".

Squashfs is also used by Linux Terminal Server Project and Splashtop. The tools unsquashfs and mksquashfs have been ported to Windows NT[4]Windows 8.1.[5] 7-Zip also supports Squashfs.[6]

History

Squashfs was initially maintained as an out-of-tree Linux patch. The initial version 1.0 was released on 23 October 2002.[7] In 2009 Squashfs was merged into Linux mainline as part of Linux 2.6.29.[8][9] In that process, the backward-compatibility code for older formats was removed. Since then the Squashfs kernel-space code has been maintained in the Linux mainline tree, while the user-space tools remain on the project's GitHub page.[10]

The original version of Squashfs used gzip compression, although Linux kernel 2.6.34 added support for LZMA[11] and LZO compression,[12] Linux kernel 2.6.38 added support for LZMA2 compression (which is used by xz),[13] Linux kernel 3.19 added support for LZ4 compression,[14] and Linux kernel 4.14 added support for Zstandard compression.[15]

Linux kernel 2.6.35 added support for extended file attributes.[16]

See also


References

  1. "The OpenWrt Flash Layout – OpenWrt Wiki". 2018-06-07. https://openwrt.org/docs/techref/flash.layout#partitioning_of_the_flash. 
  2. "Exploitee.rs » Blog Archive » Chromecast: Exploiting the Newest Device By Google.". https://blog.exploitee.rs/2013/chromecast-exploiting-the-newest-device-by-google/. 
  3. Amadeo, Ron (May 18, 2016). "Android N Borrows Chrome OS Code for 'Seamless' Update Installation". https://arstechnica.com/gadgets/2016/05/android-n-borrows-chrome-os-code-for-seamless-update-installation/. 
  4. "Squashfs tools for Windows". http://www.slax.org/blog/482-Squashfs-tools-for-Windows. 
  5. "Squashfs Tools (Linux/Windows)" (in nl). http://domoticx.com/bestandssysteem-squashfs-tools-software/. 
  6. "7-Zip". https://www.7-zip.org/. 
  7. "Squashfs CHANGES file". 2014-08-08. https://sourceforge.net/p/squashfs/code/ci/master/tree/CHANGES. 
  8. "Linux 2 6 29 -- Linux Kernel Newbies". 2009-06-10. https://kernelnewbies.org/Linux_2_6_29. 
  9. "Btrfs and Squashfs merged into Linux kernel - The H Open: News and Features". 2009-01-10. http://www.h-online.com/open/news/item/Btrfs-and-Squashfs-merged-into-Linux-kernel-739613.html. 
  10. "Squashfs README file". 2021-07-23. https://github.com/plougher/squashfs-tools/blob/master/README. 
  11. "Official Squashfs LZMA". http://www.squashfs-lzma.org/. 
  12. "Linux 2 6 34 - Linux Kernel Newbies". http://kernelnewbies.org/Linux_2_6_34#head-35808ff36eeaca6084c79975a7d50263b726acc1. 
  13. "Linux 2 6 38 - Linux Kernel Newbies". http://kernelnewbies.org/Linux_2_6_38#head-1ca50229f5801418cffa063f800aae8b466f1c60. 
  14. Merge of LZ4 Squashfs support to Linus Torvalds tree.
  15. "squashfs: Add zstd support · torvalds/linux@87bf54b". https://github.com/torvalds/linux/commit/87bf54bb43ddd385d2538b777324bf737f243042. 
  16. "Linux 2 6 35 - Linux Kernel Newbies". http://kernelnewbies.org/Linux_2_6_35#head-7b60ef60876830625c37e8f1c24e460eebc418cc. 

External links