Created
April 26, 2021 14:31
-
-
Save nightcrawler-/f07ef19e525f3de78425c7ef7de79e12 to your computer and use it in GitHub Desktop.
Extract XZ File from shell
This file contains hidden or 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
| How do I extract tar.xz files in Linux? | |
| The syntax is: | |
| Install xz using the dnf install xz on a CentOS/RHEL/Fedora Linux. | |
| Debian/Ubuntu Linux users try apt install xz-utils command. | |
| Extract tar.xz using the tar -xf backup.tar.xz command | |
| To decompress filename.tar.xz file run: xz -d -v filename.tar.xz |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment