Actually bzip2 it is very similar
with gzip. But bzip with higher
compressing ratio (30%). You can
download it from: http://sourceware.cygnus.com/bzip2/
First I assume you have installed "bzip".
In Linux with new version of tar, you can
unpack it as:
tar Ixvf *.tar.bz2
You can also unpack it as:
bzip2 *.tar.bz2 | tar xvf -
or
bzip2 *.tar.bz2
tar xvf *.tar
【在 t*********d 的大作中提到】 : rt
c****y 发帖数: 1
3
use "bzip2 -d" instead of "bzip2" when uncompress the archive
【在 d*****g 的大作中提到】 : Actually bzip2 it is very similar : with gzip. But bzip with higher : compressing ratio (30%). You can : download it from: : http://sourceware.cygnus.com/bzip2/ : First I assume you have installed "bzip". : In Linux with new version of tar, you can : unpack it as: : tar Ixvf *.tar.bz2 : You can also unpack it as: