Click to See Complete Forum and Search --> : What's a .bz2 file?


Silent Bob
06-22-2001, 04:52 AM
And how do I deal with it?

As far as I can tell it's a compressed file, but how do I decompress it?

CMonster
06-22-2001, 05:44 AM
bzip2 -d targetfile.whatever.bz2

man bzip2

If you do not have bzip2 installed you will need to install it.

Silent Bob
06-22-2001, 05:55 AM
thanks

Stween
06-22-2001, 04:48 PM
Also, if you have a .tar.bz2 rather than running

tar zxf file-name

as you would on a .tar.gz or .tgz try

tar yxf file-name.tar.bz2

its possible that tar has bz2 support compiled in and is very convenient if it is :)


Stween