Click to See Complete Forum and Search --> : untar tar.bz2?


S.D.Willie
12-29-2001, 12:52 PM
just curious as to how to unzip these and what is the command, what do i need......etc.
thanks

SD

camelrider
12-29-2001, 05:36 PM
See "man bzip2" for details.
Basically "bunzip2 filename.bz2" unzips the file. Then use tar to separate the files as: "tar -xvf filename.tar"

Linuxcool
12-30-2001, 01:33 AM
Try this: bzip2 -dc archive.tar.bz2 | tar xvf -

anton
12-30-2001, 11:41 AM
or u can do just : tar xfvj filename.tar.bz2

Strike
12-30-2001, 04:31 PM
Originally posted by anton:
<STRONG>or u can do just : tar xfvj filename.tar.bz2</STRONG>

Actually, for some DUMB reason, the switch for bzip2 changes from version to version with tar and the only CERTAIN way of making it work is to use:

tar --bzip -xvf filename.tar.bz2