2025-03-14 21:59:59 -06:00
|
|
|
# lrzip
|
|
|
|
|
|
|
|
|
|
> A large file compression program.
|
|
|
|
|
> See also: `lrunzip`, `lrztar`, `lrzuntar`.
|
|
|
|
|
> More information: <https://manned.org/lrzip>.
|
|
|
|
|
|
|
|
|
|
- Compress a file with LZMA - slow compression, fast decompression:
|
|
|
|
|
|
|
|
|
|
`lrzip {{path/to/file}}`
|
|
|
|
|
|
|
|
|
|
- Compress a file with BZIP2 - good middle ground for compression/speed:
|
|
|
|
|
|
2026-02-18 06:55:01 -07:00
|
|
|
`lrzip {{[-b|--bzip2]}} {{path/to/file}}`
|
2025-03-14 21:59:59 -06:00
|
|
|
|
|
|
|
|
- Compress with ZPAQ - extreme compression, but very slow:
|
|
|
|
|
|
2026-02-18 06:55:01 -07:00
|
|
|
`lrzip {{[-z|--zpaq]}} {{path/to/file}}`
|
2025-03-14 21:59:59 -06:00
|
|
|
|
|
|
|
|
- Compress with LZO - light compression, extremely fast decompression:
|
|
|
|
|
|
2026-02-18 06:55:01 -07:00
|
|
|
`lrzip {{[-l|--lzo]}} {{path/to/file}}`
|
2025-03-14 21:59:59 -06:00
|
|
|
|
|
|
|
|
- Compress a file and password protect/encrypt it:
|
|
|
|
|
|
2026-02-18 06:55:01 -07:00
|
|
|
`lrzip {{[-e|--encrypt]}} {{path/to/file}}`
|
2025-03-14 21:59:59 -06:00
|
|
|
|
|
|
|
|
- Override the number of processor threads to use:
|
|
|
|
|
|
2026-02-18 06:55:01 -07:00
|
|
|
`lrzip {{[-p|--threads]}} {{8}} {{path/to/file}}`
|