压缩和解压缩类
gzip/gunzip指令
gzip用于压缩文件,gunzip用于解压的
- 基本语法
语法 | 功能描述 |
---|---|
gzip 文件 | 压缩文件,只能将文件压缩成为*.gz文件 |
gunzip 文件.gz | 解压缩文件命令 |
- 应用实例
案例1:gzip压缩,将/home下的hello.txt文件进行压缩
[root@localhost home]# gzip hello.txt
案例2:gunzip压缩,将/home下的hello.txt.gz文件进行解压缩
[root@localhost home]# gunzip hello.txt.gz
- 细节说明:当我们使用gzip对文件进行压缩后,不会保留原来的文件。
zip/unzip指令
zip用于压缩文件,unzip用于解压的,这个项目打包发布中很有用的
- 基本语法
zip [选项] xxx.zip 将要压缩的内容(功能描述:压缩文件和目录的命令)
unzip [选项] xxx.zip (功能描述:解压缩文件) - zip常用选项
-r:递归压缩,即压缩目录 - unzip的常用选项
-d<目录>:执行解压后文件的存放目录 - 应用实例
案例1:将/home下的所有文件进行压缩成mypackage.zip
[root@localhost home]# zip -r mypackage.zip /home/
案例2:将mypackage.zip解压缩到/opt/temp 目录下
[root@localhost home]# unzip -d /opt/temp mypackage.zip
tar指令
tar指令是打包指令,最后打包后的文件是.tar.gz的文件
- 基本语法
tar [选项] xxx.tar.gz打包的内容(功能描述:打包目录,压缩后的文件格式.tar.gz) - 选项说明
选项 | 功能 |
---|---|
-c | 产生.tar打包文件 |
-v | 显示详细信息 |
-f | 指定压缩后的文件名 |
-z | 打包同时压缩 |
-x | 解包.tar文件 |
- 应用实例
案例1:压缩多个文件,将/home/a1.txt和/home/a2.txt压缩成a.tar.gz
[root@localhost home]# tar -zcvf a.tat.gz a1.txt a2.txt
案例2:将/home的文件夹压缩成myhome.tar.gz
[root@localhost home]# tar -zcvf myhome.tar.gz /home/
案例3:将a.tar.gz解压到当前目录
[root@localhost home]# tar -zxvf a.tar.gz
案例4:将myhome.tar.gz解压到/opt/temp目录下
指定解压到的那个目录,实现要存在才能成功,否则会报错。
[root@localhost home]# tar -zxvf myhome.tar.gz -C /opt/temp