1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-08-15 12:55:43 +02:00
tldr/pages/linux/mksquashfs.md
Managor ba6daef39d
*: standardize regex usage (#17328)
Co-authored-by: Dylan <145150333+dmmqz@users.noreply.github.com>
2025-07-25 08:50:06 +03:00

24 lines
1.2 KiB
Markdown

# mksquashfs
> Create or append files and directories to squashfs filesystems.
> More information: <https://manned.org/mksquashfs>.
- Create or append files and directories to a squashfs filesystem (compressed using `gzip` by default):
`mksquashfs {{path/to/file_or_directory1 path/to/file_or_directory2 ...}} {{filesystem.squashfs}}`
- Create or append files and directories to a squashfs filesystem, using a specific [comp]ression algorithm:
`mksquashfs {{path/to/file_or_directory1 path/to/file_or_directory2 ...}} {{filesystem.squashfs}} -comp {{gzip|lzo|lz4|xz|zstd|lzma}}`
- Create or append files and directories to a squashfs filesystem, [e]xcluding some of them:
`mksquashfs {{path/to/file_or_directory1 path/to/file_or_directory2 ...}} {{filesystem.squashfs}} -e {{file|directory1 file|directory2 ...}}`
- Create or append files and directories to a squashfs filesystem, [e]xcluding those ending with gzip:
`mksquashfs {{path/to/file_or_directory1 path/to/file_or_directory2 ...}} {{filesystem.squashfs}} -wildcards -e "{{*.gz}}"`
- Create or append files and directories to a squashfs filesystem, [e]xcluding those matching a `regex`:
`mksquashfs {{path/to/file_or_directory1 path/to/file_or_directory2 ...}} {{filesystem.squashfs}} -regex -e "{{regex}}"`