LoginSignup
6
5

More than 5 years have passed since last update.

圧縮、解凍速度が早いlzop圧縮を使おう

Last updated at Posted at 2013-09-03
インストール
$ sudo apt-get install lzop

圧縮

$ tar --lzop -cf ~/sample.tar.lzo sample

解凍

解凍
$ tar --lzop -xf ~/sample.tar.lzo

CentOS5の場合

$ tar --use-compress-program=lzop -cf ~/sample.tar.lzo sample
$ tar --use-compress-program=lzop -tvf ~/sample.tar.lzo
$ tar --use-compress-program=lzop -xf ~/sample.tar.lzo
6
5
2

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
6
5