linux多核压缩工具lbzip2编译安装

linux多核压缩工具lbzip2编译安装

wget https://launchpad.net/ubuntu/+archive/primary/+sourcefiles/lbzip2/2.5-2/lbzip2_2.5.orig.tar.bz2
tar -xvf lbzip2_2.5.orig.tar.bz2
cd lbzip2-2.5
sudo ./configure --prefix=/usr
sudo make -j
sudo make install

使用

安装完后,linux默认还是会使用默认压缩工具,需要在tar参数之后加上--use-compress-program=lbzip2才会调用lbzip2

给出一个一劳永逸的办法:

vim ~/.bashrc

加上alias指令

alias tar='tar --use-compress-program=lbzip2'

这样以后调用tar时就默认使用lbzip2进行压缩或者解压了

附上一条tar.bz2高压缩比文件的压缩指令:

tar --use-compress-program=lbzip2 -cvf 压缩文件名.tar.bz2 目标文件或目录 
评论区
头像
文章目录