文件目錄壓縮/解壓縮
創(chuàng)新互聯(lián)公司是一家集網(wǎng)站建設(shè),阿榮企業(yè)網(wǎng)站建設(shè),阿榮品牌網(wǎng)站建設(shè),網(wǎng)站定制,阿榮網(wǎng)站建設(shè)報價,網(wǎng)絡(luò)營銷,網(wǎng)絡(luò)優(yōu)化,阿榮網(wǎng)站推廣為一體的創(chuàng)新建站企業(yè),幫助傳統(tǒng)企業(yè)提升企業(yè)形象加強(qiáng)企業(yè)競爭力??沙浞譂M足這一群體相比中小企業(yè)更為豐富、高端、多元的互聯(lián)網(wǎng)需求。同時我們時刻保持專業(yè)、時尚、前沿,時刻以成就客戶成長自我,堅持不斷學(xué)習(xí)、思考、沉淀、凈化自己,讓我們?yōu)楦嗟钠髽I(yè)打造出實用型網(wǎng)站。
文件壓縮/解壓縮 ----- gzip/bzip/xz
1)gzip *.gz
壓縮:
[root@localhost ~]# gzip /bbq/1.txt
[root@localhost ~]# ls /bbq/
1.txt.gz
[root@localhost ~]# file /bbq/1.txt.gz
/bbq/1.txt.gz: gzip compressed data, was "1.txt", from Unix, last modified: Sat Sep 7 05:33:50 2019
解壓縮:
[root@localhost ~]# gzip -d /bbq/1.txt
[root@localhost ~]# ls /bbq/
1.txt
2) bzip2 *.bz2
[root@localhost ~]# bzip2 /bbq/1.txt
[root@localhost ~]# file /bbq/1.txt.bz2
/bbq/1.txt.bz2: bzip2 compressed data, block size = 900k
[root@localhost ~]# bzip2 -d /bbq/1.txt.bz2
[root@localhost ~]# ls /bbq/
1.txt
3)xz *.xz
[root@localhost ~]# xz /bbq/1.txt
[root@localhost ~]# file /bbq/1.txt.xz
/bbq/1.txt.xz: XZ compressed data
[root@localhost ~]# xz -d /bbq/1.txt.xz
[root@localhost ~]# ls /bbq/
1.txt
創(chuàng)建打包文件 ---tar
1)創(chuàng)建打包文件 *.tar
c : create創(chuàng)建
f : file文件
[root@localhost bbq]# tar cf 1.tar 1.txt
[root@localhost bbq]# file 1.tar
1.tar: POSIX tar archive (GNU)
2)解包
#tar xf 打包文件名稱 [-C 目錄名稱]
[root@localhost bbq]# tar xf 1.tar
[root@localhost bbq]# tar xf 1.tar -C /kvm/
3)查看包中的文件
[root@localhost bbq]# tar tvf 1.tar
-rw-r--r-- root/root 0 2019-09-07 05:33 1.txt
調(diào)用gzip事先壓縮/解壓縮
#tar czf 打包文件名稱 源文件
z: 調(diào)用gzip
[root@localhost bbq]# tar czf /kvm/1.tar.gz /bbq/
[root@localhost bbq]# ls /kvm
1.tar.gz
解壓縮
[root@localhost ~]# tar zxf /kvm/1.tar.gz -C /tmp/
調(diào)用bzip2實現(xiàn)壓縮/解壓縮
#tar cjf 打包文件名稱 目錄名稱
j : 調(diào)用bzip2
[root@localhost ~]# tar cjf /kvm/1.tar.bz2 /kvm/
解壓縮
[root@localhost ~]# tar xjf /kvm/1.tar.bz2 -C /tmp/
調(diào)用xz實現(xiàn)壓縮/解壓縮
J: 調(diào)用xz