您好,登錄后才能下訂單哦!
除了gzip、bzip2和xz外,linux中還有一款壓縮軟件。它支持壓縮目錄,也可以解壓windows中同類型的文件。它就是我們熟悉的zip。
1、zip
命 令 | 作 用 |
zip 1.txt.zip 1.txt | 壓縮 |
zip -r 123.zip 123/ | 壓縮目錄 |
unzip 1.txt.zip | 解壓 |
unzip 123.zip -d /root/456/ | 解壓縮到指定目錄下 |
unzip -l 123.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壓縮包的內容,只能查看壓縮包內文件列表。
2、tar
tar命令是Unix/Linux系統中備份文件的可靠方法,幾乎可以工作于任何環境中,它的使用權限是所有用戶。它主要是用來對文件打包。
命 令 | 作 用 |
tar -cvf 123.tar 123 | 打包單個文件 |
tar -cvf 123.tar 1.txt 123 | 打包多個文件 |
tar -xvf 123.tar | 解包 |
tar -tf 123.tar | 查看打包文件列表 |
tar -cvf 123.tar --exclude 1.txt --exclude 23 | 打包時部分文件不打包 |
測試示例:
[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命令還可以做打包并壓縮:
命 令 | 作 用 |
tar -zcvf 123.tar.gz 123 | 打包并壓縮成gzip壓縮包 |
tar -zxvf 123.tar.gz | 解包并解壓縮gzip壓縮包 |
tar -jcvf 123.bz2 123 | 打包并壓縮成bzip2壓縮包 |
tar -jxvf 123.bz2 | 解包并解壓縮bzip2壓縮包 |
tar -Jcvf 123.xz 123 | 打包并壓縮成xz壓縮包 |
tar -Jxvf 123.xz | 解包并解壓縮xz壓縮包 |
tar -tf 123.bz2/123.gz/123.xz | 查看壓縮包文件列表 |
測試示例:
[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
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。