1. 程式人生 > >簡單瞭解gzip、bzip2、xz

簡單瞭解gzip、bzip2、xz

  壓縮工具gzip、bzip2、xz分別對應壓縮格式.gz、.bz2、.xz。不過tar命令已經可以滿足大部分使用,所以這些格式只簡單瞭解一下。gzip壓縮速度最快,xz壓縮率最高,bz2適中。一般這三個壓縮工具用來壓縮檔案,很少用來壓縮目錄。

(1).gzip例項

壓縮

[[email protected] ~]# mkdir gzip
[[email protected] ~]# touch gzip/a.txt
[[email protected] ~]# gzip gzip/a.txt 
[[email protected] ~]# ls gzip/
a.txt.gz  //gzip壓縮會將原始檔刪除,bzip和xz可以使用-k選項保留原始檔

解壓可以使用gzip -d,也可以使用gunzip

[[email protected] ~]# gzip -d gzip/a.txt.gz 
[[email protected] ~]# ls gzip/
a.txt  //一樣刪除原始檔
[[email protected] ~]# gzip gzip/a.txt
[[email protected] ~]# ls gzip/
a.txt.gz
[[email protected] ~]# gunzip gzip/a.txt.gz 
[[email protected] ~]# ls gzip/
a.txt  //還是會刪除原始檔

(2).bzip2例項

壓縮

[[email protected] ~]# mkdir bzip2
[[email protected] ~]# touch bzip2/b.txt
[[email protected] ~]# bzip2 -k bzip2/b.txt   //不加-k選項會刪除原始檔
[[email protected] ~]# ls bzip2/
b.txt  b.txt.bz2

解壓

[[email protected] ~]# rm bzip2/b.txt
rm:是否刪除普通空檔案 "bzip2/b.txt"?y
[
[email protected]
~]# ls bzip2/ b.txt.bz2 [[email protected] ~]# bzip2 -dk bzip2/b.txt.bz2   //不加-k選項會刪除原始檔 [[email protected] ~]# ls bzip2/ b.txt b.txt.bz2

(3).xz例項

壓縮

[[email protected] ~]# mkdir xz
[[email protected] ~]# touch xz/c.txt
[[email protected] ~]# xz -k xz/c.txt 
[[email protected] ~]# ls xz/
c.txt  c.txt.xz

解壓既可以使用xz -d,也可以使用unxz

[[email protected] ~]# rm xz/c.txt   
rm:是否刪除普通空檔案 "xz/c.txt"?y
[[email protected] ~]# ls xz/
c.txt.xz
[[email protected] ~]# xz -dk xz/c.txt.xz   //不加-k選項會刪除原始檔
[[email protected] ~]# ls xz/
c.txt  c.txt.xz
[[email protected] ~]# rm xz/c.txt
rm:是否刪除普通空檔案 "xz/c.txt"?y
[[email protected] ~]# ls xz/     
c.txt.xz
[[email protected] ~]# unxz -k xz/c.txt.xz   //不加-k選項會刪除原始檔
[[email protected] ~]# ls xz/
c.txt  c.txt.xz