Your tarball is uncompressed. The extension .bz is obsolete and misleading.
You can decompress using the following command:
tar xvf data_or.tar.bz
What probably happened here is that data_or.tar.bz was created with the --auto-compress switch (or tar -cavf) that chooses the compression algorithm from the supplied extension.
The proper extension for bzip2 compressed files is .bz2, while the .bz extension is for bzip compressed files.
bzip uses arithmetic encoding (which is a patented algorithm), so bzip2 was created in 1997 as a patent-free alternative. As a result, bzip2 and bzip are incompatible.
tar cannot handle bzip (de)compression, so the --auto-compress switch resulted in an uncompressed tarball.
tar xzvf ...ortar xvf ...- otherwise maybe a look into the head may reveal details. – bdecaf Nov 29 '11 at 10:14file data_or.tar.bzwhich should tell you if the file is simply a mis-named archive of a different type. – Mokubai Nov 29 '11 at 10:18