#--------------------------------------------
# テストデータ
#--------------------------------------------
yum -y --releasever=7 --installroot=/var/lib/machines/centos7 install systemd passwd yum
$ du -sh /var/lib/machines/centos7
494M /var/lib/machines/centos7
#--------------------------------------------
# 圧縮
#--------------------------------------------
cd /var/lib/machines
time tar zcvf centos7.tar.gz centos7/
time tar jcvf centos7.tar.bz2 centos7/
time tar Jcvf centos7.tar.xz centos7/
time zip -r centos7.zip centos7
time zip -r centos7p.zip centos7
#--------------------------------------------
# 解凍
#--------------------------------------------
mkdir -p /tmp/test/{gz,bz2,xz,zip,zipp}
time tar zxvf centos7.tar.gz -C /tmp/test/gz/
time tar jxvf centos7.tar.bz2 -C /tmp/test/bz2/
time tar Jxvf centos7.tar.xz -C /tmp/test/xz/
time unzip centos7.zip -d /tmp/test/zip/
time unzip centos7p.zip -d /tmp/test/zipp/