檔案目錄壓縮/解壓縮
檔案壓縮/解壓縮 ----- 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
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 /kvm
1.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實現壓縮/解壓縮
j: 呼叫xz
檔案的解壓縮命令
類似將冬天的衣服打包放到壓縮袋 打包之後的大檔案 需要以 tar 結尾.tar 打包命令格式 將 一系列檔案 打包成 乙個大檔案 tar cvf 打包名.tar 被打包的目錄 tar cvf 打包名.tar 被打包的檔案1 被打包的檔案2 被打包的檔案3 tar選項說明 類似將冬天的衣服從壓縮袋裡取...
gz 檔案解壓縮命令
linux壓縮保留原始檔的 方法 gzip c filename filename.gz linux解壓縮保留原始檔的方法 gunzip c filename.gz filenam egunzip的用法 1.作用 gunzip命令作用是解壓檔案,使用許可權是所有使用者。2.格式 gunzip acf...
Linux檔案解壓縮命令
程序可以放到後台執行,這裡的後台,其實指的是當前登陸終端的後台。這種情況下,當我們以遠端管理伺服器的方式,在遠端終端執行後台命令,如果在命令尚未執行完畢時就退出登陸,那麼這個後台命令還會繼續執行嗎?當然不會,此命令的執行會被中斷。這就引出乙個問題,如果我們確實需要在遠端終端執行某些後台命令,該如何執...