Linux命令(28):gzip/gunzip命令-压缩和解压

简介:

gzip/gunzip命令


功能说明

    对文件进行压缩(gzip)解压(gunzip),压缩文件预设的扩展名为“.gz”,gunzip就是gzip的硬链接,解压可以通过gzip -d命令实现。用法如下:

  gzip [选项] 压缩 (解压缩) 的文档名

常用参数

选项 说明
-d 对压缩的文件进行解压(相当于gunzip的解压功能)
-c 将结果输出的标准输出(相当于保留源文件)
-r 递归式压缩指定目录以及子目录下的所有文件
-t 检查压缩文件完整性
-v 对于每个压缩和解压缩的文档,显示相应的文件名和压缩比
-l 显示压缩文件的压缩信息,显示字段为压缩文档大小、未压缩文档大小、压缩比和未压缩文档名称
-num 用指定的数字num配置压缩比,“-1”或“-fast”表示最低压缩比,“-9”或“-best”表示最高压缩比,系统默认压缩比为6

示例                    

    解压缩演示

[root@c7 app]# cp /var/log/messages ./            #复制message到当前目录

[root@c7 app]# ll -h                              #查看message的大小是12K

总用量 2.4M

-rw-r--r--. 1 root root 1.2M 10月 28 12:09 Glances-1.7.1.tar.gz

-rw-------. 1 root root  12K 11月 22 14:08 messages

-rw-r--r--. 1 root root 1.2M 10月 11 15:27 nginx-1.2.9.zip

[root@c7 app]# gzip messages                         #压缩message

[root@c7 app]# ll -h                              #压缩后的message大小是1.2K

总用量 2.4M

-rw-r--r--. 1 root root 1.2M 10月 28 12:09 Glances-1.7.1.tar.gz

-rw-------. 1 root root 1.2K 11月 22 14:08 messages.gz

-rw-r--r--. 1 root root 1.2M 10月 11 15:27 nginx-1.2.9.zip

[root@c7 app]# gzip -d messages.gz                  #解压后的message还原

[root@c7 app]# ll -h

总用量 2.4M

-rw-r--r--. 1 root root 1.2M 10月 28 12:09 Glances-1.7.1.tar.gz

-rw-------. 1 root root  12K 11月 22 14:08 messages

-rw-r--r--. 1 root root 1.2M 10月 11 15:27 nginx-1.2.9.zip

说明

    通过上面的操作可以看到message文件执行压缩后从原本的12K到1.2K,效果很明显。gzip命令执行会删除源文件,不管是压缩还是解压。

    使用-c参数,保留源文件

[root@c7 app]# gzip -c messages > messages.gz    #使用-c参数压缩   

[root@c7 app]# ll -h                             #源文件还在  

总用量 2.4M

-rw-r--r--. 1 root root 1.2M 10月 28 12:09 Glances-1.7.1.tar.gz

-rw-------. 1 root root  12K 11月 22 14:08 messages

-rw-r--r--. 1 root root 1.2K 11月 22 14:36 messages.gz

-rw-r--r--. 1 root root 1.2M 10月 11 15:27 nginx-1.2.9.zip

[root@c7 app]# gzip -9 -c messages > messages2.gz  #使用-9最低压缩比,就是最小     

    使用zcat不解压文件,查看内容

[root@c7 app]# zcat messages.gz | less

Nov 20 04:01:01 c7 systemd: Created slice user-0.slice.

Nov 20 04:01:01 c7 systemd: Starting Session 94 of user root.

Nov 20 04:01:01 c7 systemd: Started Session 94 of user root.

Nov 20 05:01:01 c7 systemd: Created slice user-0.slice.

......略





      本文转自cix123  51CTO博客,原文链接:http://blog.51cto.com/zhaodongwei/1875410,如需转载请自行联系原作者




相关文章
|
20天前
|
Linux Shell
Linux 10 个“who”命令示例
Linux 10 个“who”命令示例
50 14
Linux 10 个“who”命令示例
|
9天前
|
Ubuntu Linux
Linux 各发行版安装 ping 命令指南
如何在不同 Linux 发行版(Ubuntu/Debian、CentOS/RHEL/Fedora、Arch Linux、openSUSE、Alpine Linux)上安装 `ping` 命令,详细列出各发行版的安装步骤和验证方法,帮助系统管理员和网络工程师快速排查网络问题。
85 20
|
10天前
|
网络协议 Linux 应用服务中间件
kali的常用命令汇总Linux
kali的常用命令汇总linux
35 7
|
29天前
|
Linux 数据库
Linux中第一次使用locate命令报错?????
在Linux CentOS7系统中,使用`locate`命令时出现“command not found”错误,原因是缺少`mlocate`包。解决方法是通过`yum install mlocate -y`或`apt-get install mlocate`安装该包,并执行`updatedb`更新数据库以解决后续的“can not stat”错误。
34 9
|
28天前
|
监控 网络协议 Linux
Linux netstat 命令详解
Linux netstat 命令详解
|
Linux 开发工具
Linux:时间日期指令(date)+查找指令(find,locate,grep)+压缩和解压指令(gzip,gunzip;zip,unzip;tar)(内含详细解释+操作实例)
Linux:时间日期指令(date)+查找指令(find,locate,grep)+压缩和解压指令(gzip,gunzip;zip,unzip;tar)(内含详细解释+操作实例)
229 0
Linux:时间日期指令(date)+查找指令(find,locate,grep)+压缩和解压指令(gzip,gunzip;zip,unzip;tar)(内含详细解释+操作实例)
|
1月前
|
Linux 网络安全 数据安全/隐私保护
Linux 超级强大的十六进制 dump 工具:XXD 命令,我教你应该如何使用!
在 Linux 系统中,xxd 命令是一个强大的十六进制 dump 工具,可以将文件或数据以十六进制和 ASCII 字符形式显示,帮助用户深入了解和分析数据。本文详细介绍了 xxd 命令的基本用法、高级功能及实际应用案例,包括查看文件内容、指定输出格式、写入文件、数据比较、数据提取、数据转换和数据加密解密等。通过掌握这些技巧,用户可以更高效地处理各种数据问题。
110 8
|
1月前
|
监控 Linux
如何检查 Linux 内存使用量是否耗尽?这 5 个命令堪称绝了!
本文介绍了在Linux系统中检查内存使用情况的5个常用命令:`free`、`top`、`vmstat`、`pidstat` 和 `/proc/meminfo` 文件,帮助用户准确监控内存状态,确保系统稳定运行。
397 6
|
1月前
|
Linux
在 Linux 系统中,“cd”命令用于切换当前工作目录
在 Linux 系统中,“cd”命令用于切换当前工作目录。本文详细介绍了“cd”命令的基本用法和常见技巧,包括使用“.”、“..”、“~”、绝对路径和相对路径,以及快速切换到上一次工作目录等。此外,还探讨了高级技巧,如使用通配符、结合其他命令、在脚本中使用,以及实际应用案例,帮助读者提高工作效率。
88 3