6.4 xz壓縮工具

xz目錄概要

  • xz 1.txt 或 xz -z 1.txt 壓縮文件
  • xz -d 1.txt.xz 或 unxz 1.txt.xz 解壓文件
  • xz -# 1.txt 1.txt //#表示範圍1-9,默認爲 6
  • 不能壓縮目錄
  • xzcat 1.txt.xz 查看壓縮文件的內容
  • xz -c 1.txt > /root/1.txt.xz 壓縮文件,壓縮到指定目錄下,並修更名稱
  • xz -d -c /root/1.txt.xz > 1.txt.news 解壓文件,解壓到指定目錄下,並修更名稱

xz壓縮文件

[root@hf-01 d6z]# xz 1.txt
[root@hf-01 d6z]# ls
1.txt.xz  4.txt  5.txt
[root@hf-01 d6z]# du -sh 1.txt.xz
60K	1.txt.xz

xz解壓文件(兩種方法)

  • xz -d 1.txt.xz 解壓文件
[root@hf-01 d6z]# xz -d 1.txt.xz
[root@hf-01 d6z]# ls
1.txt  4.txt  5.txt
[root@hf-01 d6z]# du -sh 1.txt
1.5M	1.txt
  • unxz 1.txt.xz 解壓文件
[root@hf-01 d6z]# unxz 1.txt.xz
[root@hf-01 d6z]# ls
1.txt  4.txt  5.txt

xz壓縮文件,並壓縮到指定目錄

  • xz -c 1.txt > /tmp/ha.txt.xz
[root@hf-01 d6z]# xz -c 1.txt > /tmp/ha.txt.xz
[root@hf-01 d6z]# du -sh /tmp/ha.txt.xz
60K	/tmp/ha.txt.xz

xz解壓文件,並解壓到指定目錄

  • xz -d -c /tmp/ha.txt.xz > ./8.txt
  • unxz -c /tmp/ha.txt.xz > ./8.txt
[root@hf-01 d6z]# unxz -c /tmp/ha.txt.xz > ./8.txt
[root@hf-01 d6z]# ls
1.txt  4.txt  5.txt  8.txt
[root@hf-01 d6z]# du -sh 8.txt
1.5M	8.txt

xzcat查看壓縮文件

  • xzcat /tmp/ha.txt.xz

xz壓縮級別

  • xz壓縮級別是1-9,默認是 6 級別

壓縮工具排序

  • xz >bzip2 >gzip
    • xz 壓縮最爲嚴謹,把bzip2稍次之,gzip排在最後
相關文章
相關標籤/搜索