linux zip文件解壓?如需學習視頻,請查看本頭條号簡介,免費在線觀看學習視頻,我來為大家講解一下關于linux zip文件解壓?跟着小編一起來看一看吧!
如需學習視頻,請查看本頭條号簡介,免費在線觀看學習視頻
1. 前言
通常情況下,linux系統并不會産生zip文件,而是由用戶把zip文件上傳到Linux系統中,産生解壓的需求。
2. 安裝zip解壓工具unzip
以CentOS7.5最小化安裝為例,系統并沒有集成unzip工具,需要額外安裝
[root@zcwyou ~]# yum -y install unzip
看到以下輸出即代表安裝成功。
Running transaction
Installing : unzip-6.0-19.el7.x86_64 1/1
Verifying : unzip-6.0-19.el7.x86_64 1/1
Installed:
unzip.x86_64 0:6.0-19.el7
Complete!
linux安裝unzip
3. 解壓文件
先查看一下壓縮文件
[root@zcwyou zip]# ll *.zip
查詢結果如下
total 4
-rw-r--r--. 1 root root 3032 Dec 4 17:14 zcwyou.zip
解壓這個zcwyou.zip文件
[root@zcwyou zip]# unzip zcwyou.zip
執行過程如下:
Archive: test.zip
inflating: 333.txt
extracting: abc.txt
inflating: cisco1.txt
inflating: cisco2.txt
extracting: compress.txt
extracting: cp1.txt
extracting: cp2.txt
inflating: cut2.txt
extracting: cut.txt
extracting: diff1.txt
extracting: diff2.txt
creating: dir123/
extracting: hard123.txt
extracting: hard.txt
extracting: linux123.txt
extracting: soft.txt
extracting: test.txt
linux使用unzip解壓zip文件
可以看到,unzip程序創建了一個目錄dir123/,并且解壓了一些文件。目錄dir123是壓縮文件裡的一個目錄。
檢查:
[root@zcwyou zip]# ll
total 40
-rw-r--r--. 1 root root 315 Nov 27 16:15 333.txt
-rw-r--r--. 1 root root 9 Nov 21 11:39 abc.txt
-rw-r--r--. 1 root root 173 Oct 13 15:24 cisco1.txt
-rw-r--r--. 1 root root 179 Oct 13 15:24 cisco2.txt
-rw-r--r--. 1 root root 0 Oct 12 14:40 compress.txt
-rw-r--r--. 1 root root 0 Oct 11 10:23 cp1.txt
-rw-r--r--. 1 root root 0 Oct 11 10:23 cp2.txt
-rw-r--r--. 1 root root 57 Oct 12 13:45 cut2.txt
-rw-r--r--. 1 root root 50 Oct 12 11:59 cut.txt
-rw-r--r--. 1 root root 9 Oct 13 14:59 diff1.txt
-rw-r--r--. 1 root root 18 Oct 13 15:00 diff2.txt
drwxr-xr-x. 2 root root 6 Dec 4 17:06 dir123
-rw-r--r--. 1 root root 0 Nov 26 17:47 hard123.txt
-rw-r--r--. 1 root root 0 Nov 26 17:47 hard.txt
-rw-r--r--. 1 root root 0 Nov 29 17:25 linux123.txt
-rw-r--r--. 1 root root 0 Nov 26 17:47 soft.txt
-rw-r--r--. 1 root root 10 Nov 19 13:33 test.txt
-rw-r--r--. 1 root root 3032 Dec 4 17:14 zcwyou.zip
發現zcwyou.zip裡的文件已經被全部解壓出來了,并且保留了源文件zcwyou.zip。
解壓其它例子
檢查linux解壓的文件
4. 其它實用案例
4.1 把zcwyou.zip解壓到目錄/tmp
[root@zcwyou zip]# unzip -d /tmp zcwyou.zip
4.2 解壓不覆蓋原有文件
[root@zcwyou zip]# unzip -n zcwyou.zip
4.3 解壓到指定目錄不覆蓋原有文件
[root@zcwyou zip]# unzip -n -d /tmp zcwyou.zip
4.4 解壓到指定目錄并覆蓋原有文件
[root@zcwyou zip]# unzip -o zcwyou.zip -d /tmp/
4.5 列出壓縮包内容
[root@zcwyou zip]# unzip -l zcwyou.zip
4.6 查看壓縮包信息,包括每個文件的壓縮率和總壓縮率。
[root@zcwyou zip]# unzip -v zcwyou.zip
Archive: test.zip
Length Method Size Cmpr Date Time CRC-32 Name
315 Defl:N 163 48% 11-27-2018 16:15 c785bec5 333.txt
9 Stored 9 0% 11-21-2018 11:39 b202eb3a abc.txt
173 Defl:X 120 31% 10-13-2018 15:24 ddc8760a cisco1.txt
179 Defl:X 121 32% 10-13-2018 15:24 c83f3111 cisco2.txt
0 Stored 0 0% 10-12-2018 14:40 00000000 compress.txt
0 Stored 0 0% 10-11-2018 10:23 00000000 cp1.txt
0 Stored 0 0% 10-11-2018 10:23 00000000 cp2.txt
57 Defl:X 40 30% 10-12-2018 13:45 cfaa04a8 cut2.txt
50 Stored 50 0% 10-12-2018 11:59 8bdf8936 cut.txt
9 Stored 9 0% 10-13-2018 14:59 d0864923 diff1.txt
18 Stored 18 0% 10-13-2018 15:00 12be2d98 diff2.txt
0 Stored 0 0% 12-04-2018 17:06 00000000 dir123/
0 Stored 0 0% 11-26-2018 17:47 00000000 hard123.txt
0 Stored 0 0% 11-26-2018 17:47 00000000 hard.txt
0 Stored 0 0% 11-29-2018 17:25 00000000 linux123.txt
0 Stored 0 0% 11-26-2018 17:47 00000000 soft.txt
10 Stored 10 0% 11-19-2018 13:33 769b1926 test.txt
820 540 34% 17 files
linux unzip查看壓縮包信息
4.7 測試壓縮文件
[root@zcwyou zip]# unzip -t zcwyou.zip
檢驗結果如下:
Archive: test.zip
testing: 333.txt OK
testing: abc.txt OK
testing: cisco1.txt OK
testing: cisco2.txt OK
testing: compress.txt OK
testing: cp1.txt OK
testing: cp2.txt OK
testing: cut2.txt OK
testing: cut.txt OK
testing: diff1.txt OK
testing: diff2.txt OK
testing: dir123/ OK
testing: hard123.txt OK
testing: hard.txt OK
testing: linux123.txt OK
testing: soft.txt OK
testing: test.txt OK
No errors detected in compressed data of test.zip.
linux使用unzip測試壓縮包
5. unzip命令的其他選項
[root@zcwyou zip]# unzip -h
-p 解壓文件到重定向到pipe,但不顯示信息
-l 列出壓縮包裡所有的文件
-f 更新壓縮包内已有的文件,但不添加新文件
-t 測試壓縮包
-u 更新壓縮包内已有的文件,并添加新文件
-z 僅顯示壓縮包文件的備注信息
-v 打印詳細的執行過程。
-T 解壓時更新文件時間至解壓時間
-x 指定解壓哪些文件
-d 解壓時創建新的目錄
修改參數:
-n 不覆蓋文件
-q 靜默模式
-o 靜默替換
-a 自動轉換文本文件
-j 不處理壓縮文件中原有的目錄
-aa 把所有文件當做文本文件
-U use escapes for all non-ASCII Unicode
-UU 忽略任何的Unicode字段
-C 壓縮文件時區分大小寫
-L 把壓縮文件裡的文件名全部變為小定
-X 存儲UID/GID信息
-V 保留VMS版本号
-K 保留setuid/setgid/tacky權限
-M 把輸出結果交由more打印
-O 指定字符編碼為 DOS,Windows 和 OS/2
-I 指定字符編碼為 UNIX編碼
總結:zip文件一般由Windows系統壓縮,并上傳到Linux系統上,Linux系統使用unzip解壓縮,如果發生亂碼,需要使用選項-O指定字符編碼,比如GBK,GB18030.
點擊了解更多,快速查看更多的技術文章列表。
更多精彩资讯请关注tft每日頭條,我们将持续为您更新最新资讯!