压缩打包介绍
常见的压缩文件
Windows .rar .zip .7z
Linux gz、zip、bz2、xz、tar.gz、tar.bz2、 tar.xz
压缩对于磁盘节省空间
压缩对于传输传输时间短,节省带宽资源
gzip压缩工具
gzip 1.txt
[[email protected] ~]# ls
anaconda-ks.cfg lsx.sh
[[email protected] ~]# gzip lsx.sh //压缩之后源文件消失
[[email protected] ~]# ls //压缩之后源文件消失
anaconda-ks.cfg lsx.sh.gz
gzip -d 1.txt.gz / gunzip 1.txt.gz
[[email protected] ~]# gzip -d lsx.sh.gz //解压缩
[[email protected] ~]# ls //解压缩之后压缩包丢失
anaconda-ks.cfg lsx.sh
gzip -# 1.txt //#范围1-9,默认6
[[email protected] ~]# ll -h
-rw-r--r-- 1 root root 169K 11月 4 08:33 lsx.txt
[[email protected] ~]# gzip lsx.txt //默认6
[[email protected] ~]# ll -h
-rw-r--r-- 1 root root 46K 11月 4 08:33 lsx.txt.gz
[[email protected] ~]# gzip -1 lsx.txt //-1 //数值越大越严谨
[[email protected] ~]# ll -h
-rw-r--r-- 1 root root 54K 11月 4 08:33 lsx.txt.gz
不能压缩目录
[[email protected] ~]# gzip lsx //不能压缩目录
gzip: lsx is a directory -- ignored
zcat 1.txt.gz
[[email protected] ~]# zcat lsx.txt.gz //查看文件内容
gzip -c 1.txt > /root/1.txt.gz
[[email protected] ~]# gzip -c lsx.txt >./lsx.txt.gz //-c 压缩但是源文件不消失,需指定压缩之后文件名
unzip -c /root/1.txt.gz > /tmp/1.txt.new
[[email protected] ~]# gzip -dc ./lsx.txt.gz > /tmp/lsx.txt //解压缩。源文件不丢,解压之后文件需指定
[[email protected] ~]# ll /tmp/ -h
-rw-r--r-- 1 root root 169K 11月 4 08:49 lsx.txt
bzip2压缩工具
bzip2 1.txt / bzip2 -z 1.txt
[[email protected] ~]# bzip2 lsx.txt //压缩成bz2文件,源文件消失
[[email protected] ~]# ll -h
-rw-r--r-- 1 root root 43K 11月 4 08:43 lsx.txt.bz2
-rw-r--r-- 1 root root 46K 11月 4 08:44 lsx.txt.gz
bzip2 -d 1.txt.bz2 / bunzip2 1.txt.bz2
[[email protected] ~]# bzip2 -d lsx.txt.bz2 //解压缩压缩包消失
[[email protected] ~]# ls
anaconda-ks.cfg lsx lsx.txt lsx.txt.gz
bzip -# 1.txt //#范围1-9,默认9 bzip压缩比gz严谨
[[email protected] ~]# bzip2 -1 lsx.txt
[[email protected] ~]# ll
-rw-r--r-- 1 root root 45588 11月 4 08:43 lsx.txt.bz2
-rw-r--r-- 1 root root 46625 11月 4 08:44 lsx.txt.gz
[[email protected] ~]# bzip2 -9 lsx.txt
[[email protected] ~]# ll -h
-rw-r--r-- 1 root root 43K 11月 4 08:43 lsx.txt.bz2
-rw-r--r-- 1 root root 46K 11月 4 08:44 lsx.txt.gz
不能压缩目录
[[email protected] ~]# bzip2 lsx
bzip2: Input file lsx is a directory.
bzcat 1.txt.bz2
[[email protected] ~]# bzcat lsx.txt.bz2 //查看文件内容
bzip2 -c 1.txt > /root/1.txt.bz
[[email protected] ~]# bzip2 -c ./lsx.txt>./lsx.txt.bz2 //压缩。源文件不消失,指定压缩后文件
[[email protected] ~]# ls
lsx.txt lsx.txt.bz2 lsx.txt.gz
bzip2 -c -d /root/1.txt.bz2 > /tmp/1.txt.new2
[[email protected] ~]# bzip2 -dc lsx.txt.bz2 > /tmp/lsx.bzip2 //解压压缩包不消失,需指定压缩后文件
[[email protected] ~]# ls /tmp/
lsx.bzip2
xz压缩工具
xz 1.txt / xz -z 1.txt
[[email protected] ~]# xz lsx.txt //压缩文件
[[email protected] ~]# ll -h
-rw-r--r-- 1 root root 43K 11月 4 09:10 lsx.txt.bz2
-rw-r--r-- 1 root root 46K 11月 4 08:44 lsx.txt.gz
-rw-r--r-- 1 root root 42K 11月 4 09:09 lsx.txt.xz
xz -d 1.txt.xz / unxz 1.txt.xz
[[email protected] ~]# xz -d lsx.txt.xz //解压,压缩包消失
[[email protected] ~]# ll -h
-rw-r--r-- 1 root root 169K 11月 4 09:09 lsx.txt
-rw-r--r-- 1 root root 43K 11月 4 09:10 lsx.txt.bz2
-rw-r--r-- 1 root root 46K 11月 4 08:44 lsx.txt.gz
xz -# 1.txt //#范围1-9,默认9 压缩比:xz压缩最严谨,次bz2,gz
[[email protected] ~]# xz -9 lsx.txt
[[email protected] ~]# ll -h
-rw-r--r-- 1 root root 43K 11月 4 09:10 lsx.txt.bz2
-rw-r--r-- 1 root root 46K 11月 4 08:44 lsx.txt.gz
-rw-r--r-- 1 root root 42K 11月 4 09:09 lsx.txt.xz
不能压缩目录
[[email protected] ~]# xz lsx
xz: lsx: Is a directory, skipping
xzcat 1.txt.xz
[[email protected] ~]# xzcat lsx.txt.xz //查看文件内容
xz -c 1.txt > /root/1.txt.xz
[[email protected] ~]# xz -c lsx.txt>./lsx.txt.xz //压缩。-c源文件不消失,需指定压缩文件
[[email protected] ~]# ls
lsx.txt lsx.txt.xz
xz -d -c /root/1.txt.xz > 1.txt.new3
[[email protected] ~]# xz -dc lsx.txt.xz > lsx.txt.xz.new //解压缩,-c指定解压缩之后文件,压缩包不消失
[[email protected] ~]# ls
lsx.txt.xz
lsx.txt.xz.new