A compression utility that excels at compressing large files (usually > 10-50 MB).
cd Ports/lrzip
./package.sh
Command | Result |
---|---|
lrztar directory |
An archive directory.tar.lrz compressed with LZMA. |
lrzuntar directory.tar.lrz |
A directory extracted from a lrztar archive. |
lrzip filename |
An archive filename.lrz compressed with LZMA, meaning slow compression and fast decompression. |
lrzip -z filename |
An archive "filename.lrz" compressed with ZPAQ that can give extreme compression, but takes a bit longer than forever to compress and decompress. |
lrzip -l filename |
An archive lightly compressed with LZO, meaning really, really fast compression and decompression. |
lrunzip filename.lrz |
Decompress filename.lrz to filename. |
lrz filename |
As per lrzip above but with gzip compatible semantics (i.e. will be quiet and delete original file) |
lrz -d filename.lrz |
As per lrunzip above but with gzip compatible semantics (i.e. will be quiet and delete original file) |
Website: https://github.com/ckolivas/lrzip
Port: https://github.com/SerenityOS/serenity/tree/master/Ports/lrzip