knowledge/technology/linux/filesystems/SquashFS.md

25 lines
486 B
Markdown
Raw Permalink Normal View History

2023-12-04 10:02:23 +00:00
---
obj: filesystem
---
# SquashFS
2024-01-17 08:44:04 +00:00
**Squashfs** is a compressed read-only [file system](Filesystems.md) for [Linux](../Linux.md).
2023-12-04 10:02:23 +00:00
## Creation
```shell
mksquashfs source1 source2 ... destination [options]
```
**Use alternate compressions:**
```shell
mksquashfs source1 destination -comp <compression>
```
**Highly compressed:**
```shell
mksquashfs source1 destination -comp xz -Xdict-size 100%
```
## Extraction
```shell
unsquashfs [options] target [files/directories to extract]
```