2018-10-15 23:57:32 +01:00
|
|
|
# lrzip
|
|
|
|
|
|
|
|
> A large file compression program.
|
2023-11-23 13:55:03 +00:00
|
|
|
> See also: `lrunzip`, `lrztar`, `lrzuntar`.
|
2021-08-16 11:34:01 +01:00
|
|
|
> More information: <https://manned.org/lrzip>.
|
2018-10-15 23:57:32 +01:00
|
|
|
|
|
|
|
- Compress a file with LZMA - slow compression, fast decompression:
|
|
|
|
|
2023-12-27 06:41:30 +00:00
|
|
|
`lrzip {{path/to/file}}`
|
2018-10-15 23:57:32 +01:00
|
|
|
|
|
|
|
- Compress a file with BZIP2 - good middle ground for compression/speed:
|
|
|
|
|
2023-12-27 06:41:30 +00:00
|
|
|
`lrzip -b {{path/to/file}}`
|
2018-10-15 23:57:32 +01:00
|
|
|
|
|
|
|
- Compress with ZPAQ - extreme compression, but very slow:
|
|
|
|
|
2023-12-27 06:41:30 +00:00
|
|
|
`lrzip -z {{path/to/file}}`
|
2018-10-15 23:57:32 +01:00
|
|
|
|
|
|
|
- Compress with LZO - light compression, extremely fast decompression:
|
|
|
|
|
2023-12-27 06:41:30 +00:00
|
|
|
`lrzip -l {{path/to/file}}`
|
2018-10-15 23:57:32 +01:00
|
|
|
|
|
|
|
- Compress a file and password protect/encrypt it:
|
|
|
|
|
2023-12-27 06:41:30 +00:00
|
|
|
`lrzip -e {{path/to/file}}`
|
2018-10-15 23:57:32 +01:00
|
|
|
|
|
|
|
- Override the number of processor threads to use:
|
|
|
|
|
2023-12-27 06:41:30 +00:00
|
|
|
`lrzip -p {{8}} {{path/to/file}}`
|