Ensure that you have the bzip2 and bzip2-libs RPMs installed.
It looks like the tar command defers to the bzip2 command which the bzip2 RPM provides (/usr/bin/bzip2). In your case, tar specifically tries to call bzip2 -d to decompress the bzipped archive.
Also, a couple of tips:
-
The
-voption is not necessary. It just gives verbose output, which means that it lists the files that were extracted from the archive. Most of the time this prints useless data to your terminal. -
As @Skynet said, it is helpful to run the
filecommand on your bzip2 archive to ensure that it is actually in bzip2 format. -
As @Odin said, it appears that you don’t need to specify the
-joption when extracting the archive, as thetarcommand seems to be smart enough to figure this out.