檔案目錄的解壓縮命令 老人與海

2022-09-23 03:09:14 字數 1847 閱讀 1489

檔案目錄壓縮/解壓縮

檔案壓縮/解壓縮 ----- 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

建立打包檔案 ---tar

1)建立打包檔案 *.tar

tar cf 打包檔名稱 原始檔c : create建立

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

呼叫gzip事先壓縮/解壓縮

#tar czf 打包檔名稱 原始檔

z: 呼叫gzip[root@localhost bbq]# tar czf /kvm/1.tar.gz /bbq/

[root@localhost bbq]# ls /kvm1.tar.gz

解壓縮[root@localhost ~]# tar zxf /kvm/1.tar.gz -c /tmp/

呼叫bzip2實現壓縮/解壓縮

#tar cjf 打包檔名稱 目錄名稱

j : 呼叫bzip2[root@localhost ~]# tar cjf /kvm/1.tar.bz2 /kvm/

解壓縮[root@localhost ~]# tar xjf /kvm/1.tar.bz2 -c /tmp/

呼叫xz實現壓縮/解壓縮

tar cjf 打包檔名稱 目錄名稱j: 呼叫xz

檔案目錄的解壓縮命令

檔案目錄壓縮 解壓縮 檔案壓縮 解壓縮 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....

老人與海的觀後感

乙個簡單的故事,乙個平凡的老人,一條普通的大du馬zhi林魚,在茫茫大海上發生了看似平凡而又不平凡的經歷。也沒有大海,就沒有魚,沒有魚,也就沒有魚夫,同樣也就沒有折斷不凡的經歷了。正因為有了大海,才讓魚夫釣上了一條大馬林魚,但卻在海上拖了三天三夜才把魚殺死,但又遭到鯊魚的襲擊,賊後的結局可想而知,這...

檔案壓縮與解壓縮

類 zipfile 構造方法 zipfile file file 開啟供閱讀的zip檔案,由指定的file物件給出。zipfile file file,int mode 開啟新的zipfile以使用指定模式從指定file物件讀取 zipfile string name 開啟zip檔案進行閱讀 方法摘...