linux 上常用的壓縮工具

2021-08-20 21:22:31 字數 742 閱讀 7527

tar

*.tar----------僅打包,不壓縮:tar -cvf /tmp/etc.tar /etc 

解壓:tar -xvf /tmp/etc.tar 

*.tar.gz----------打包後,以 gzip 壓縮:tar -zcvf /tmp/etc.tar.gz /etc        

解壓:tar -zxvf /tmp/etc.tar.gz(解壓*tgz檔案方法相同)

*.tar.bz2-----------打包後,以 bzip2 壓縮:tar -jcvf /tmp/etc.tar.bz2 /etc 

解壓:tar -jxvf  /tmp/etc.tar.bz2

(v表示輸出壓縮解壓清單,操作的時候可以不加,這樣對小檔案的壓縮速度會快些)

rar

安裝:sudo apt-get install rar unrar

加壓:rar  a  file.rar file

解壓:unrar  e file.rar    或者     rar x file.rar

區別在於使用unrar e file.rar 解壓會把原rar壓縮包中的全部檔案解壓到當前目錄下,沒有目錄;而rar e file.rar 解壓出來後會保持原來壓縮包的目錄結構

gzip

加壓:gzip file

解壓:gzip -d *gz 或者 gunzip *gz

Linux壓縮工具

gzip,gunzip,zcat compress or expand files gzip option filenames d 解壓縮,相當於gunzip 指定壓縮比 1 9 預設為6,數字越大壓縮比越大,消耗的cpu越多,壓縮後的空間越小 c 壓縮後標準輸出,且保留原始檔 所以要跟 重定向輸出...

Linux壓縮工具使用

1 gzip gz格式的壓縮包 壓縮的的同時將原檔案刪除gzip build.sh 2 bzip2 bz2格式的壓縮包 壓縮的的同時預設將原檔案刪除,可以使用 k引數來保留原檔案。tar 不使用z j引數 該命令只能對檔案或目錄打包 引數 c 建立 壓縮 x 釋放 解壓縮 v 顯示提示資訊 壓縮解壓...

linux壓縮工具的比較

一 linux壓縮工具概述 首先,我們看一下下面這張 壓縮包副檔名與壓縮工具對應表 大家通過這張表,就知道網上 工具名 壓縮包副檔名 gzip gunzip gz compress uncompress z zip unzip zip bzip2 bunzip2 bz2 lha lzh 接下來,我們...