Skip to main content
Tips

How to Extract or Unzip tar.xz File in Linux

Learn how to unzip tar.xz file in Linux terminal. Also learn what are tar and xz files.

Abhishek Prakash

So you just downloaded a program or a file that ends in .tar.xz and you are wondering how to extract this tar.xz file in Linux command line.

Before I show you how to unzip a tar.xz file, let me quickly tell you about tar and xz.

What is tar.xz file?

tar is a utility that combines multiple files into one single file. The main advantage of a utility like tar is in transferring files.

Due to the overhead, transferring 100 files of 1 KB will take longer than transferring one file of 100 KB.

Using tar command, you can archive several files into one single file and thus you save time and bandwidth while transferring the file.

But tar itself doesn’t compress files. If you use tar to combine 100 files of 1 KB each, the resultant tar file will probably be around 100 KB only.

To further save time and bandwidth, compression utilities are used. These compression tools will reduce the size of the resultant tar file. XZ is one such compression tool and it utilizes LZMA compression algorithm.

This is why the resultant tar.xz file in our scenario could be considerably smaller than 100 KB, let’s say 50 KB.

Extracting tar.xz file in Linux

Extracting a tar xz file is fairly simple. You just need to make sure that you have support for xz compression utility on your Linux distribution.

xz compression tool is available through xz-utils package in most Linux distributions. Most of the time, you’ll already have the xz-utils installed by default.

But you should still ensure that it is installed on your system. You can use your Linux distribution’s package manager to install it.

On Debian or Ubuntu, you can install xz-utils with the following command:

sudo apt install xz-utils

Once you have the xz compression support on your Linux distribution, you can extract the tar.xz file using the standard tar command:

tar -xf file.tar.xz

In here:

  • -x means extract the archived file
  • -f means following is the archived file name

Why did you need to specify x (extract ) here? Because tar can also be used for creating (compressing) files.

So you need to specify which operation you are performing with tar command, compression (c) or extraction (x).

I hope this quick tutorial helped you in extracting tar xz file and you have a slightly better understanding of tar and xz files. In a related post, you may learn about creating a gzip folder with tar in Linux.

If you liked the tutorial, subscribe to the weekly newsletter to get Linux tips and tutorials in your inbox.

Abhishek Prakash