6
1
I always used to use this command to extract files from a bzip2 tar ball:
tar xjvf file.tar.bz2
But right now on Ubuntu 14.04, I get this error:
tar: Conflicting compression options
Try 'tar --help' or 'tar --usage' for more information.
Did something change or is this a bug?
EDIT: I think there might be a bug. I just tried running it through bunzip2
first, and then extracting everything from the resulting tar ball, and got this:
$ tar xvf file.tar
tar (child): pbzip2: Cannot exec: No such file or directory
tar (child): Error is not recoverable: exiting now
tar: Child returned status 2
tar: Error is not recoverable: exiting now
EDIT2: This is what I get after installing pbzip2
:
$ tar xf file.tar
pbzip2: producer_decompress: *ERROR: when reading bzip2 input stream
Terminator thread: premature exit requested - quitting...
tar: Child returned status 1
tar: Error is not recoverable: exiting now
Are you sure someone hasn't aliased
tar
totar xz
or something like that? – David Schwartz – 2014-08-25T02:08:18.703Pretty certain. I'm pretty paranoid about access on my machine, so it's rather locked down, but I ran
unalias tar
and gotbash: unalias: tar: not found
just to sure. – supercheetah – 2014-08-25T02:14:02.940If the file were created with
-z
, you would getbzip2: (stdin) is not a bzip2 file
– Bert – 2014-08-25T02:32:11.820Notice that I got that error after running the original file through
bunzip2
and then runningtar xvf
, so the error doesn't even make sense. – supercheetah – 2014-08-25T02:34:41.287The
pbzip2: cannot exec: no such file or directory
leads me to ask if bzip2 is even installed?whereis bzip2
If it is not found,sudo apt-get install bzip2
– Bert – 2014-08-25T02:35:56.170@Bert See second edit – supercheetah – 2014-08-25T02:39:06.587