init
This commit is contained in:
commit
c5cd492449
475 changed files with 27928 additions and 0 deletions
25
technology/linux/filesystems/SquashFS.md
Normal file
25
technology/linux/filesystems/SquashFS.md
Normal file
|
@ -0,0 +1,25 @@
|
|||
---
|
||||
obj: filesystem
|
||||
---
|
||||
# SquashFS
|
||||
**Squashfs** is a compressed read-only [file system](Filesystems.md) for [Linux](../Linux.md).
|
||||
|
||||
## 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]
|
||||
```
|
Loading…
Add table
Add a link
Reference in a new issue