Skip to content

Instantly share code, notes, and snippets.

@nightcrawler-
Created April 26, 2021 14:31
Show Gist options
  • Select an option

  • Save nightcrawler-/f07ef19e525f3de78425c7ef7de79e12 to your computer and use it in GitHub Desktop.

Select an option

Save nightcrawler-/f07ef19e525f3de78425c7ef7de79e12 to your computer and use it in GitHub Desktop.
Extract XZ File from shell
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