您好,登錄后才能下訂單哦!
請求超時(shí)!
除了gzip、bzip2和xz外,linux中還有一款壓縮軟件。它支持壓縮目錄,也可以解壓windows中同類型的文件。它就是我們熟悉的zip。
1、zip
測試示例:
[root@server02 ~]# zip 1.txt.zip 1.txt adding: 1.txt (deflated 71%) [root@server02 ~]# ls -lh 1.txt* -rw-r--r--. 1 root root 21M 6月 20 17:56 1.txt -rw-r--r--. 1 root root 4.2M 6月 20 17:55 1.txt.bz2 -rw-r--r--. 1 root root 5.8M 6月 20 17:35 1.txt.gz -rw-r--r--. 1 root root 21M 6月 20 17:59 1.txt.new -rw-r--r--. 1 root root 681K 6月 20 17:59 1.txt.xz -rw-r--r--. 1 root root 5.8M 6月 20 18:03 1.txt.zip [root@server02 ~]# file newdir newdir: directory [root@server02 ~]# zip -r newdir.zip newdir adding: newdir/ (stored 0%) adding: newdir/1.txt (deflated 71%) [root@server02 ~]# unzip 1.txt.zip Archive: 1.txt.zip replace 1.txt? [y]es, [n]o, [A]ll, [N]one, [r]ename: A inflating: 1.txt [root@server02 ~]# unzip -l newdir.zip Archive: newdir.zip Length Date Time Name --------- ---------- ----- ---- 0 06-20-2017 18:04 newdir/ 21095346 06-20-2017 18:04 newdir/1.txt --------- ------- 21095346 2 files
和gzip、bzip2和xz不同的是,使用zip壓縮后,保留原文件。不能更改壓縮后的壓縮包名稱。不能直接查看zip壓縮包的內(nèi)容,只能查看壓縮包內(nèi)文件列表。
2、tar
tar命令是Unix/Linux系統(tǒng)中備份文件的可靠方法,幾乎可以工作于任何環(huán)境中,它的使用權(quán)限是所有用戶。它主要是用來對文件打包。
[root@server02 ~]# tar -cvf 1.tar 1.txt 1.txt [root@server02 ~]# ls -lh 1.* -rw-r--r--. 1 root root 21M 6月 20 18:09 1.tar -rw-r--r--. 1 root root 21M 6月 20 17:56 1.txt [root@server02 ~]# tar -cvf 12.tar 1.txt 2.txt 1.txt 2.txt [root@server02 ~]# tar -tf 12.tar 1.txt 2.txt [root@server02 ~]# ls newdir 1.txt 2.txt 3.txt [root@server02 ~]# tar -cvf 123.tar newdir --exclude 1.txt newdir/ newdir/2.txt newdir/3.txt
使用tar命令還可以做打包并壓縮:
[root@server02 ~]# tar -zcvf 1.txt.tar.gz 1.txt 1.txt [root@server02 ~]# ls -lh 1.txt.tar.gz -rw-r--r--. 1 root root 5.8M 6月 20 18:15 1.txt.tar.gz [root@server02 ~]# tar -zxvf 1.txt.tar.gz 1.txt [root@server02 ~]# tar -jcvf 1.txt.bz2 1.txt 1.txt [root@server02 ~]# ls -lh 1.txt.bz2 -rw-r--r--. 1 root root 4.2M 6月 20 18:18 1.txt.bz2 [root@server02 ~]# tar -jxvf 1.txt.bz2 1.txt [root@server02 ~]# tar -Jcvf 1.txt.xz 1.txt 1.txt [root@server02 ~]# ls -lh 1.txt.xz -rw-r--r--. 1 root root 680K 6月 20 18:22 1.txt.xz [root@server02 ~]# tar -Jxvf 1.txt.xz 1.txt
免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場,如果涉及侵權(quán)請聯(lián)系站長郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。
億速云公眾號
手機(jī)網(wǎng)站二維碼
Copyright ? Yisu Cloud Ltd. All Rights Reserved. 2018 版權(quán)所有
廣州億速云計(jì)算有限公司粵ICP備17096448號-1 粵公網(wǎng)安備 44010402001142號增值電信業(yè)務(wù)經(jīng)營許可證編號:B1-20181529