Centos7.5-檔案的歸檔和壓縮
本節所講內容:
- 9.1 tar命令進行檔案的歸檔和壓縮
- 9.2 zip管理壓縮檔案
- 9.3 瞭解gzip-bzip2- xz管理壓縮檔案-file-sort檢視檔案
9.1 tar命令進行檔案的歸檔和壓縮 9.1.1 歸檔和壓縮檔案
歸檔和壓縮檔案的好處:節約硬碟的資源 ,加快檔案傳輸速率
-
tar命令 作用:打包、壓縮檔案
-
作用:打包、壓縮檔案;tar 檔案是把幾個檔案和(或)目錄集合在一個檔案裡,該存檔檔案可以通過使用gzip、bzip2或xz等壓縮工具進行行壓縮後傳輸
-
檢視man tar
-
用法:tar [OPTION…] [FILE]…
引數:
- -c create建立檔案
- -x -extract [ˈekstrækt] 提取 解壓還原檔案
- -v --verbose顯示執行詳細過程
- -f --file指定備份檔案
- -t --list 列出壓縮包中包括哪些檔案,不解包,檢視包中的內容
- -C (大寫)–directory 指定解壓位置
例:給/boot/grub目錄 打包
[[email protected] ~]# tar -cvf grub.tar /boot/grub/ # tar的引數前可以不使用‘-’
或:
[[email protected] ~]# tar cvf grub.tar /boot/grub/
tar: 從成員名中刪除開頭的“/”
/boot/grub/
/boot/grub/splash.xpm.gz
[[email protected] ~]# ls gurb.tar
[[email protected] ~]# tar xvf grub.tar #解壓縮
boot/grub/
boot/grub/splash.xpm.gz
[[email protected] ~]# ls boot #得到boot目錄
注意:在使用絕對路徑名歸檔檔案時,將預設從檔名中刪除該路徑中前面的 / 符號。這樣解壓時,會直接解壓到當前目錄。 如果不移除/壓縮時,當解包時,直接按絕對路徑來釋放,會覆蓋原系統中此路徑的檔案。 例1:指定解壓位置 -C
[[email protected] ~]# tar xvf grub.tar.bz2 -C /opt/
tar: 從成員名中刪除開頭的“/”
/boot/grub/
/boot/grub/splash.xpm.gz
[[email protected] ~]# ls /opt/
boot
例2:把兩個目錄或目錄+檔案打包成一個軟體包:
[[email protected] ~]# mkdir back
[[email protected] ~]# cp /etc/passwd back/
[[email protected] ~]# tar -cvf back.tar /boot/grub back/ /etc/passwd
tar: 從成員名中刪除開頭的“/”
/boot/grub/
/boot/grub/splash.xpm.gz
back/
back/passwd
/etc/passwd
例3:不解包,檢視tar中的內容:
[[email protected] ~]# tar -tvf grub.tar # List all files in archive.tar verbosely.
例4:對比加v的效果
[[email protected] ~]# tar -xf grub.tar
[[email protected] ~]# tar -xvf grub.tar
boot/grub/
boot/grub/splash.xpm.gz
Linux架構師高薪入口: 1.學神IT教育官方網站: http://xuegod.ke.qq.com 2.10年行業資深老鳥MK:QQ2659153446 3.加入Linux技術交流QQ群:722287089,即可獲得以下福利: ①定期分享免費學習資料與視訊(工具+筆記+拓展實戰) ②10年行業資深老鳥線上答疑:技能+實戰+專案分享+高薪就業 ③有機會免費領取Linux雲端計算叢集架構師4冊書籍
9.1.2 tar 歸檔+壓縮:
語法:tar czvf newfile.tar.gz SOURCE 常用引數:
- -z, --gzip 以gzip方式壓縮 副檔名: tar.gz
- -j : 以bz2方式壓縮的 副檔名:tar.bz2
- -J : 以xz 方式壓縮 副檔名:tar.xz
例1:建立.tar.gz 包
[[email protected] ~]# tar cvf etc.tar /etc
[[email protected] test]# tar zcvf etc.tar.gz /etc #歸檔,注意備份的名字字尾
[[email protected] test]# tar zxvf etc.tar.gz #解壓縮
例2:建立.tar.bz2包
-
語法: #tar jcvf newfile.tar.bz2 SOURCE
[[email protected] ~]# tar -jcvf etc.tar.bz2 /etc [[email protected] ~]# tar -jxvf etc.tar.bz2 /etc #解壓縮 [[email protected] ~]# tar jxvf etc.tar.bz2 -C /opt #解壓到opt目錄下
例3:建立.tar.xz包
[[email protected] ~]# tar -Jcvf etc.tar.xz /etc
[[email protected] ~]# tar -xvf etc.tar.xz #tar.xz 這類包,解壓縮
或:
[[email protected] ~]# tar -Jxvf etc.tar.xz #
對比三種壓縮方式後壓縮比例:
[[email protected] ~]# ll -h etc.tar*
-rw-r--r-- 1 0 root 36M 5月 10 12:10 etc.tar
-rw-r--r-- 1 0 root 9.6M 5月 10 12:14 etc.tar.bz2 #這個常用
-rw-r--r-- 1 0 root 12M 5月 10 12:11 etc.tar.gz #這個常用
-rw-r--r-- 1 0 root 7.7M 5月 10 12:16 etc.tar.xz #這個壓縮比例最高,壓縮的時間是最長
9.2 zip管理壓縮檔案
zip軟體包解壓縮命令: zip是壓縮程式,unzip是解壓程式。 例1:壓縮檔案:
[[email protected] ~]# zip a.zip /etc/passwd
例2:將所有.jpg的檔案壓縮成一個zip包
[[email protected] ~]# zip all.zip *.jpg
例3:壓縮一個目錄
[[email protected] ~]# zip -r grub.zip /boot/grub #一般不用
解壓縮:
[[email protected] ~]# unzip grub.zip
[[email protected] ~]# unzip grub.zip -d /opt/ # -d 解壓到指定的目標/opt
9.3 瞭解gzip-bzip2- xz管理壓縮檔案-file-sort檢視檔案
我們建立壓縮的TAR存檔,TAR命令它支援三種不同的壓縮方式。
- gzip壓縮速度最快;
- bzip2壓縮生成的檔案比gzip小,但使用不如gzip廣;
- xz壓縮工具相對較新,但是會提供最佳的壓縮率 Linux架構師高薪入口: 1.學神IT教育官方網站: http://xuegod.ke.qq.com 2.10年行業資深老鳥MK:QQ2659153446 3.加入Linux技術交流QQ群:722287089,即可獲得以下福利: ①定期分享免費學習資料與視訊(工具+筆記+拓展實戰) ②10年行業資深老鳥線上答疑:技能+實戰+專案分享+高薪就業 ③有機會免費領取Linux雲端計算叢集架構師4冊書籍
9.3.1 壓縮工具
壓縮工具:gzip bzip2 zip xz 常見的壓縮格式: .gz .bz2 .xz .zip 語法格式: 壓縮
gzip 檔案 ====》 gzip a.txt =====》 a.txt.gz
bzip2 檔案 ===》 bzip2 b.txt =====》 b.txt.bz2
xz 檔案 ===》xz c.txt ===》c.txt.xz
[[email protected] ~]# mkdir xuegod
[[email protected] ~]# touch xuegod/a.txt
[[email protected] ~]# gzip xuegod/a.txt
[[email protected] ~]# ls xuegod/a*
xuegod/a.txt.gz
注:只能對檔案進行壓縮,且壓縮後原始檔會消失,一般不用。 (bzip2,xz這兩個工具可以通過新增引數-k來保留下原始檔)
[[email protected] ~]# cp /etc/passwd 1.txt
[[email protected] ~]# bzip2 -k 1.txt
[[email protected] ~]# ls 1.txt.bz2
[[email protected] ~]# xz -k 1.txt
[[email protected] ~]# ls 1.txt.xz
解壓:
- gzip -d 檔案
- bzip2 -d 檔案 -k 保留原始檔
- xz -d 檔案 或 unxz 檔案 -k 保留原始檔
例:
[[email protected] mnt]# gzip -d 1.txt.bz2
[[email protected] ~]# bzip2 -d 1.txt.bz2
[[email protected] mnt]# xz -d 1.txt.bz2
9.3.2 file檢視檔案
file命令
- 作用: file - determine file type #確定檔案型別
- 用法: file /etc/passwd
注:linux系統不根據字尾名識別檔案型別用file命令檢視檔案的型別。
[[email protected] ~]# file /etc/passwd
/etc/passwd: ASCII text
9.3.3 按一定規則排序檢視檔案
檢視檔案:
[[email protected] ~]# ls -ltr 按時間排序 t 表示時間, -r 從小到大,不加r引數由大到小
[[email protected] ~]# ls -lSr 按大小排序 -r 從小到大
[[email protected] ~]# ls -lSrh 按大小排序 -r 從小到大 ,加-h 引數,看大小,更清楚
[[email protected] ~]# ls -lS 從大到小
檢視目錄:
[[email protected] ~]# du -sh /etc 看某個目錄大小
檢視分割槽大小:
[[email protected] ~]# df -h 可以快速檢視磁碟大小的儲存空間
9.3.4 排序:處理大量資料時會用到的命令sort
例1:預設按字母規則進行排序
[[email protected] ~]# cat /etc/passwd | sort | more
例2: 按資料排序
[[email protected] ~]# vim file2 #每行隨意寫一些數字
例2: 按資料排序,預設從小到大
2
23
231
[[email protected] mnt]# sort -n file2 #-n預設從小到大
[[email protected] ~]# sort -r file2 #-r 反序排序(升序變成降序進行排序) 從大小到
例3:支援按月份排序
[[email protected] ~]# vim file3 #寫入以下內容
January
March
April
February
[[email protected] ~]# sort -M file3
April
February
January
March
例4:組合使用
-
-t 指定一個用來區分鍵位置字元
-
-k 後面跟數字,指定按第幾列進行排序
-
-r 反序排序(升序變成降序進行排序)
[[email protected] ~]# sort -t “:” -k3 -r /etc/passwd | more #按: 做分隔符,以第3列,也就是使用者UID,來從大到小排序 [[email protected] ~]# du -h /etc | sort -r | more #把etc目錄下所有檔案,按從大到小排序 Linux架構師高薪入口: 1.學神IT教育官方網站: http://xuegod.ke.qq.com 2.10年行業資深老鳥MK:QQ2659153446 3.加入Linux技術交流QQ群:722287089,即可獲得以下福利: ①定期分享免費學習資料與視訊(工具+筆記+拓展實戰) ②10年行業資深老鳥線上答疑:技能+實戰+專案分享+高薪就業 ③有機會免費領取Linux雲端計算叢集架構師4冊書籍 微信公眾號: MK老師微訊號: 總結:
-
9.1 tar命令進行檔案的歸檔和壓縮
-
9.2 zip管理壓縮檔案
-
9.3 瞭解gzip-bzip2- xz管理壓縮檔案-file-sort檢視檔案