bunzip2 package.tar.bz2 && tar xvf package.tar
Hi all,
I have the following package and cannot figure out how to install it:
cups-1.1.12-source.tar.bz2
Would I install it like a .gz package?
Thanks.
bunzip2 package.tar.bz2 && tar xvf package.tar
And you install it from source just like any other tar.gz package would (./configure && make && make install).
In case others are wondering about bz2 packages and how to unpack.
From demian at LNO
Apart from the unpacking it's just like *tgz or *tar.gz. You can unpack it with bzcat packagename.tar.bz2 | tar xfv -
It's also possible that you have a patched version of tar installed so you can use tar yxfv ... (I'm not too sure if it's y read tar --help for more info)
Bookmarks