981

I'm used to extracting tarballs with a -xfz flag, which handles gzip and bzip2 archives.

Recently I've run into a .tar.xz file and I would like to uncompress it in one step using tar, how can I do that?

BuZZ-dEE
  • 14,223
Jorge Castro
  • 71,754
  • 15
    note you may have to install xz-utils if not already present – Tobias Kienzler May 10 '13 at 07:04
  • here's my little script that guesses tar flags for you: https://gist.github.com/shime/5908634 – shime Jul 02 '13 at 12:06
  • 8
    tar --help lists tar flags. -xzf applies to gzip. -xjf to bz2. -xJf to xz. – noobninja Nov 11 '16 at 19:27
  • Better Question to ask than how to do this with tar: Use unar or 7z and never worry about choosing the right program for your type of archive again. This is the only feasible solution looking forward with more and more archive types coming. Unless you care about the technical details... – masterxilo Mar 21 '20 at 18:05
  • https://pypi.org/project/unp/ – Andrew Jan 17 '22 at 19:35

12 Answers12

1240

Ubuntu includes GNU tar, which recognizes the format by itself! One command works with any supported compression method, per the manual.

# The same command handles any compression format! Ex:

tar xf archive.tar.xz # for .tar.xz files tar xf archive.tar.gz # for .tar.gz files tar xf archive.tar # for .tar files

etc. If tar gives a Cannot exec error, you may need to sudo apt install xz-utils first.

ramslök
  • 12,620
398

Try

tar -xJf file.pkg.tar.xz

The -J is the flag that specifically deals with .xz files.

Jorge Castro
  • 71,754
jrg
  • 60,611
95

If for some reason the tar solutions don’t work (perhaps because you’re using the OS X built-ins), try this:

unxz < file.tar.xz > file.tar

…which is equivalent to:

xz -dc < file.tar.xz > file.tar

Then use tar to untar the file.

  • 3
    That should be constructable with a pipe. – gerrit Mar 20 '14 at 18:43
  • 7
    I feel like you could just do unxz < file.tar.xz | tar x or similar. – thirtythreeforty May 16 '14 at 14:39
  • 7
    this worked for me, where tar xf did not. ubuntu 12.04 – philshem Aug 14 '14 at 20:57
  • At least on my Ubuntu machine, unxz is not equivalent to xz -dc, but to xz -d. So to extract file.tar.xz to file.tar, you'd simply write unxz file.tar.xz. If you want an equivalent to xz -dc, decompressing to stdout, use xzcat. For example xzcat file.tar.xz | tar x. – nwellnhof May 25 '17 at 16:50
43

xz is a lossless data compressor. You will have to extract the tar ball from xz and then extract the tar:

unxz my_archive.tar.xz      # results in my_archive.tar

Then you know to extract a tar

tar -xf my_archive.tar

Source: XZ Utils - Wikipedia.

Seth
  • 58,122
Foxx
  • 431
21

I had the same problem, the tar xf command was not able to extract it. To fix this, you need to install the xz-utils package. The solution was:

sudo apt-get install xz-utils

then:

tar xf myfile.tar.xz
Zsolt Sky
  • 311
  • 2
  • 3
20
tar -xvf package.tar.xz

-x - extract files

-v - verbosely list files processed

-f - use specified archive file

nsane
  • 476
6

Just want to add that if you have an old version of GNU tar prior to version 1.22 when the --xz and -J options became available, you could compress or decompress tar.xz files by using --use-compress-program xz. For example,

tar --use-compress-program xz -cf example.tar.xz file1 file2 file3

or

tar --use-compress-program xz -xf example.tar.xz
ScottH
  • 71
  • 1
  • 2
5

I like dtrx

sudo apt install dtrx
dtrx your-file.tar.xz
5

If tar recognizes the compression format, you don't need a flag:

tar xvf *.tar.xz

If you need to decompress the input manually, for example because your tar is too old to recognize xz, or you need a special path:

xz -cd *.tar.xz | tar xvf -

Pipes are faster than making an uncompressed intermediate file, and use less disk space too!

4

Ubuntu comes with Python (Python 2.7 and Python 3), which contains the necessary modules for extracting archives. So if for whatever reason tar command is missing (say your sysadmin has removed it and you don't have sudo privillege to install it), one can use:

python3 -c 'import tarfile,sys; b = tarfile.open(sys.argv[1]);print(b.extractall())' ./archive.xz 

As a short script,that's more readable as:

#!/usr/bin/env python3
import tarfile,sys

with tarfile.open( sys.argv[1] ) as fd:
    fd.extractall()

Suppose I created an .xz file with tar cJf thing.xz /etc/passwd. The archive will contain etc directory with passwd file inside. Using the above script will result in etc directory created in your current working directory, and within it will be passwd file. Of course, this can always be extended by specifying path where you want to extract inside the extractall() function.

Sergiy Kolodyazhnyy
  • 105,154
  • 20
  • 279
  • 497
4

Wow, that's a really good one. Was it done with 7zip on a Mac? Try this:

7z x -so file.tar.xz | tar xf -
  • Requires 7z, which isn't what he wants - he wants to do it entirely in tar. – jrg Jan 03 '12 at 00:08
  • Yes, thanks - the "xz" got me! Well, it's one step anyway :) And tar J = tar xz, so we might even write tar xzf file.tar.xz like "normal" tar xvfz file.tar.gz. So basically no difference. No dash needed before using the switch. –  Jan 03 '12 at 00:19
  • It's almost like the answer was given in the question. :) –  Jan 03 '12 at 00:26
  • I was thrown off too because tar zxf errored out on the .xz file, I suppose just using J all the time would be the way to go. – Jorge Castro Jan 03 '12 at 00:28
  • 2
    Yup! The manual page is not in sync with the source: buffer.c uses -J for lzma. –  Jan 03 '12 at 00:45
1

unar is quite a nice simple program and easy to type, to unarchive almost any format including 7z and RAR

it seems to be written in (GNU) Objective-C and so requires installation of some gnustep (GNU's Objective-C implementation) libraries (gnustep-base-runtime and libgnustep-base1.25)

if you use --install-suggests or have configured apt to install suggested packages, unar will suggest and install many GUI GNUStep programs which are not what you want

sudo apt install --no-install-suggests unar 
unar linux-source.tar.xz

it will create the output directory linux-source automatically.

cat
  • 1,672
  • 1
    Best answer (though the question specifically mentions using tar for the job...). Since installing this I never have to look up how to unpack archive X again. All that knowledge is encoded in that program. This is exactly how everything should just work together... – masterxilo Mar 21 '20 at 18:07