Windows下的常見壓縮格式有.zip和.rar,而Linux下的常見壓縮格式有:gz,bzip2,xz,zip等由于壓縮算法的不同烦却,所以以上幾個(gè)壓縮后的文件大小各不同其爵。
一摩渺、gzip
用法:gzip 文件路徑
gzip壓縮與解壓完成后會(huì)刪除源文件。
#壓縮文件
[root@centos7 app]$gzip testfile
#解壓文件
[root@centos7 app]$gunzip testfile.gz
[root@centos7 app]$gzip -d testfile.gz
#不解壓文件查看源文件
二枉侧、bzip2
用法:bzip2 文件路徑
壓縮文件:bzip2 testfile
解壓文件:bzip2 -d testfile.bz
-k 不刪除原文件的情況下解壓:bzip2 -dk testfile.bz
不解壓縮查看原文件:bzcat file
三榨馁、xz
用法:xz 文件路徑
壓縮文件:xz testfile
解壓文件:xz -d testfile
不刪除源文件解壓:xz -dk testfile
不解壓查看原文件:xzcat file
四黍特、zip打包壓縮
zip 可以壓縮文件,也可以壓縮目錄并且默認(rèn)不刪除原文件翔曲。以上三個(gè)無(wú)此功能
壓縮文件:zip file
解壓文件:unzip file
遞歸處理子目錄:zip -r file
五、tar工具
tar工具是歸檔文件不是壓縮工具掠械,歸檔完的文件可能比之前的文件還大一些肚菠。并且tar工具對(duì)于歸檔和展開歸檔并不會(huì)刪除原文件箫章。
1.將多個(gè)文件創(chuàng)建到指定路徑的歸檔文件,歸檔文件通常以tar結(jié)尾
[root@centos7 test]$tar -cf guidang.tar dir1 dir2
2.查看歸檔文件中的文件列表
[root@centos7 test]$tar -tf guidang.tar
3.展開歸檔文件
#默認(rèn)展開之當(dāng)前目錄
[root@centos7 test]$tar -xf guidang.tar
#展開至指定歸檔,使用大C
[root@centos7 test]$tar -xf guidang.tar -C /home/root
4.可以使用tar工具對(duì)已有的歸檔文件進(jìn)行追加
但是對(duì)于歸檔并壓縮的文件不支持追加。
[root@centos7 test]$tar -rf guidang.tar file
5.歸檔并壓縮
歸檔的文件名,一定要與壓縮的文件格式相對(duì)應(yīng)飒泻。
-j-----bzip2
-z----gzip
-J----xz
- 舉例
[root@centos7 test]$tar -Jcf zuoye.tar.xz zuoye/
- tar打包時(shí)排除指定目錄
list為需要打包的文件的絕對(duì)路徑,
使用-T
調(diào)用需要打包的列表文件史辙,-X為排除需要打包的文件
[root@centos7 test]$tar -jcf zuoye.tar.bzip2 -T list -X fei
- 使用tar時(shí)將文件進(jìn)行分割
-b 1M 分割成1M大小的塊耙蔑,-d以數(shù)字的方式進(jìn)行區(qū)分盐股,zuoye指定分割后文件前綴
[root@centos7 test]$ split -b 1M -d zuoye.tar.gzip2 zuoye
[root@centos7 test]$ ls
zuoye00 zuoye01 zuoye.tar.bzip2
#將分割的文件合并
[root@centos7 test]$cat zuoye0* >zuoye.tar.bzip2