Last active
September 26, 2024 09:27
-
-
Save ph4ge/aa4b75cad7d6db6b7f77c677ecd39533 to your computer and use it in GitHub Desktop.
Parallelized XZ compression - deb
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Parallelized XZ compressor | |
## Install requirement | |
sudo apt install pixz -y | |
## Create XZed archive | |
tar -Ipixz -cvf myArchive.tpxz archive/ | |
## Untar XZed archive | |
tar -Ipixz -xvf myArchive.tpxz |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment