Linux下常用的压缩工具总结(gzip/tar/bzip2/zip)

本文涉及的产品
云数据库 RDS MySQL,集群系列 2核4GB
推荐场景:
搭建个人博客
RDS MySQL Serverless 基础系列,0.5-2RCU 50GB
云数据库 RDS PostgreSQL,集群系列 2核4GB
简介:

gzip:

1)只能针对普通文件进行压缩,对文件夹、符号链接无效。

2)如果想对多个文件一起压缩并打包,gzip是无法办到的,需要结合tar进行

1
2
3
4
5
6
7
8
9
10
[root@mysql-master databackup] # ll
总用量 32
drwx------ 2 root root 4096 10月 12 00:43 2016-10-12_00-43-29
drwx------ 2 root root 4096 10月 12 00:44 2016-10-12_00-44-00
drwx------ 2 root root 4096 10月 12 00:46 2016-10-12_00-46-53
drwx------ 2 root root 4096 10月 12 00:47 2016-10-12_00-47-43
drwx------ 2 root root 4096 10月 12 00:49 2016-10-12_00-49-02
-rw-r--r-- 1 root root 2522 10月 19 21:17  passwd
drwxr-xr-x 2 root root 4096 10月 12 00:37 xtrabackup
drwxr-xr-x 2 root root 4096 10月 12 00:37 xtrabackuplog

使用“-c”选项,可以保留原有文件

1
2
3
4
5
6
7
8
9
10
11
12
[root@mysql-master databackup] # gzip -c passwd >passwd.gz
[root@mysql-master databackup] # ll
总用量 36
drwx------ 2 root root 4096 10月 12 00:43 2016-10-12_00-43-29
drwx------ 2 root root 4096 10月 12 00:44 2016-10-12_00-44-00
drwx------ 2 root root 4096 10月 12 00:46 2016-10-12_00-46-53
drwx------ 2 root root 4096 10月 12 00:47 2016-10-12_00-47-43
drwx------ 2 root root 4096 10月 12 00:49 2016-10-12_00-49-02
-rw-r--r-- 1 root root 2522 10月 19 21:17  passwd
-rw-r--r-- 1 root root 1006 10月 19 21:18  passwd .gz
drwxr-xr-x 2 root root 4096 10月 12 00:37 xtrabackup
drwxr-xr-x 2 root root 4096 10月 12 00:37 xtrabackuplog

直接使用“gzip+文件”的压缩方式,原始文件不会被保留

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
[root@mysql-master databackup] # cp /etc/shadow .
[root@mysql-master databackup] # ll
总用量 40
drwx------ 2 root root 4096 10月 12 00:43 2016-10-12_00-43-29
drwx------ 2 root root 4096 10月 12 00:44 2016-10-12_00-44-00
drwx------ 2 root root 4096 10月 12 00:46 2016-10-12_00-46-53
drwx------ 2 root root 4096 10月 12 00:47 2016-10-12_00-47-43
drwx------ 2 root root 4096 10月 12 00:49 2016-10-12_00-49-02
-rw-r--r-- 1 root root 2522 10月 19 21:17  passwd
-rw-r--r-- 1 root root 1006 10月 19 21:18  passwd .gz
---------- 1 root root 1393 10月 19 21:19 shadow
drwxr-xr-x 2 root root 4096 10月 12 00:37 xtrabackup
drwxr-xr-x 2 root root 4096 10月 12 00:37 xtrabackuplog
[root@mysql-master databackup] # gzip shadow 
[root@mysql-master databackup] # ll
总用量 40
drwx------ 2 root root 4096 10月 12 00:43 2016-10-12_00-43-29
drwx------ 2 root root 4096 10月 12 00:44 2016-10-12_00-44-00
drwx------ 2 root root 4096 10月 12 00:46 2016-10-12_00-46-53
drwx------ 2 root root 4096 10月 12 00:47 2016-10-12_00-47-43
drwx------ 2 root root 4096 10月 12 00:49 2016-10-12_00-49-02
-rw-r--r-- 1 root root 2522 10月 19 21:17  passwd
-rw-r--r-- 1 root root 1006 10月 19 21:18  passwd .gz
---------- 1 root root  536 10月 19 21:19 shadow.gz
drwxr-xr-x 2 root root 4096 10月 12 00:37 xtrabackup
drwxr-xr-x 2 root root 4096 10月 12 00:37 xtrabackuplog

使用“gzip -d 压缩文件”,进行解压

1
2
3
4
5
6
7
8
9
10
11
12
13
14
[root@mysql-master databackup] # gzip -d shadow.gz
[root@mysql-master databackup] # ll
总用量 40
drwx------ 2 root root 4096 10月 12 00:43 2016-10-12_00-43-29
drwx------ 2 root root 4096 10月 12 00:44 2016-10-12_00-44-00
drwx------ 2 root root 4096 10月 12 00:46 2016-10-12_00-46-53
drwx------ 2 root root 4096 10月 12 00:47 2016-10-12_00-47-43
drwx------ 2 root root 4096 10月 12 00:49 2016-10-12_00-49-02
-rw-r--r-- 1 root root 2522 10月 19 21:17  passwd
-rw-r--r-- 1 root root 1006 10月 19 21:18  passwd .gz
---------- 1 root root 1393 10月 19 21:19 shadow
drwxr-xr-x 2 root root 4096 10月 12 00:37 xtrabackup
drwxr-xr-x 2 root root 4096 10月 12 00:37 xtrabackuplog
如上,我们发现原有的shadow文件已经出来了

gzip有九个压缩级别1-9(数字越大,压缩强度越高,速度对应的也会慢些),默认级别为6

# gzip -1 test.log


tar:

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
压缩 /etc 文件:
[root@mysql-master databackup] # tar -czvf etc.tar.gz /etc
[root@mysql-master databackup] # du -sh etc.tar.gz 
12Metc. tar .gz
解压缩,并进行查看
 
[root@mysql-master databackup] # tar -xf etc.tar.gz
tar 常用的几个选项:
-c选项:表示要进行打包动作
-x选项:表示要进行拆包动作
-z选项:表示用 gzip 进行压缩或解压缩
- v 选项:表示在拆包过程中直接整个过程,把已拆包的文件显示出来
-f选项:表示指定要拆包的文件
-t选项:列出打包的内容,适用于不想解压,但想查看压缩包内容的情况
[root@mysql-master databackup] # du -sh src.tar.gz 
607Msrc. tar .gz
[root@mysql-master databackup] # tar -ztvf src.tar.gz |less



bzip2:

bzip2用于压缩文件,bunzip2用于解压文件

但是我们查看链接文件,会发现,其实bunzip2其实就是bzip2的一个链接

1
2
3
4
5
6
7
8
9
10
11
12
[root@mysql-master ~] # ls -l /usr/bin/bunzip2 
lrwxrwxrwx. 1 root root 5 7月   5 23:42  /usr/bin/bunzip2  ->  bzip2
[root@mysql-master ~] # bzip2 install.log
[root@mysql-master ~] # ls
anaconda-ks.cfg        index.html        install .log.syslog  M_pass.log  R_Server.log  模板  图片  下载  桌面
changehostpassword.sh   install .log.bz2  ip_list.txt         R_PWD.txt   公共的        视频  文档  音乐
[root@mysql-master ~] # file install.log.bz2 
install .log.bz2:  bzip2  compressed data, block size = 900k
[root@mysql-master ~] # bunzip2 -d install.log.bz2 
[root@mysql-master ~] # ls
anaconda-ks.cfg        index.html    install .log.syslog  M_pass.log  R_Server.log  模板  图片  下载  桌面
changehostpassword.sh   install .log  ip_list.txt         R_PWD.txt   公共的        视频  文档  音乐

zip:

与gzip/bzip2类似,zip用于文件压缩,unzip命令用于解压缩,zip支持对文件和文件夹的压缩,-r表示递归

注意:zip在压缩文件的时候,会保留原文件

1
2
3
4
5
6
7
8
9
10
11
12
[root@mysql-master ~] # cd /usr/local/src/
[root@mysql-master src] # ls
cmake-2.8.8         libiconv-1.14. tar .gz    mcrypt-2.6.8         mhash-0.9.9.9. tar .gz                 mysql-5.5.32. tar .gz  php-5.3.27
cmake-2.8.8. tar .gz  libmcrypt-2.5.8         mcrypt-2.6.8. tar .gz  mysql-5.5.32                         nginx-1.6.2          php-5.3.27. tar .gz
libiconv-1.14       libmcrypt-2.5.8. tar .gz  mhash-0.9.9.9        mysql-5.5.32-linux2.6-x86_64. tar .gz  nginx-1.6.2. tar .gz
[root@mysql-master src] # zip -r nginx.zip nginx-1.6.2.tar.gz nginx-1.6.2/
[root@mysql-master src] # ls
cmake-2.8.8         libiconv-1.14. tar .gz    mcrypt-2.6.8         mhash-0.9.9.9. tar .gz                 mysql-5.5.32. tar .gz  nginx.zip
cmake-2.8.8. tar .gz  libmcrypt-2.5.8         mcrypt-2.6.8. tar .gz  mysql-5.5.32                         nginx-1.6.2          php-5.3.27
libiconv-1.14       libmcrypt-2.5.8. tar .gz  mhash-0.9.9.9        mysql-5.5.32-linux2.6-x86_64. tar .gz  nginx-1.6.2. tar .gz   php-5.3.27. tar .gz
[root@mysql-master src] # du -sh nginx.zip 
7.7Mnginx.zip

unzip结合-d参数,解压到指定文件夹

1
2
3
4
5
6
[root@mysql-master src] # mkdir -p /mysqlbackup
[root@mysql-master src] # unzip -d /mysqlbackup nginx.zip 
[root@mysql-master src] # ls -l /mysqlbackup/
总用量 792
drwxr-xr-x 9 root root   4096 9月  16 2014 nginx-1.6.2
-rw-r--r-- 1 root root 804164 6月  22 01:17 nginx-1.6.2. tar .gz

使用“unzip -v 压缩文件”的组合,不解压的情况下,来查看压缩文件中的内容

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
[root@mysql-master src] # unzip -v nginx.zip 
Archive:  nginx.zip
  Length   Method    Size  Cmpr    Date    Time   CRC-32   Name
--------  ------  ------- ---- ---------- ----- --------  ----
   804164  Defl:N   804176   0% 06-22-2016 01:17 c721c245  nginx-1.6.2. tar .gz
        0  Stored        0   0% 09-16-2014 20:23 00000000  nginx-1.6.2/
     2369  Defl:N      732  69% 09-16-2014 20:23 85d03809  nginx-1.6.2 /configure
        0  Stored        0   0% 09-22-2016 15:46 00000000  nginx-1.6.2 /contrib/
        0  Stored        0   0% 09-16-2014 20:23 00000000  nginx-1.6.2 /contrib/vim/
        0  Stored        0   0% 09-22-2016 15:46 00000000  nginx-1.6.2 /contrib/vim/indent/
      250  Defl:N      165  34% 09-16-2014 20:23 87c1f91b  nginx-1.6.2 /contrib/vim/indent/nginx .vim
        0  Stored        0   0% 09-22-2016 15:46 00000000  nginx-1.6.2 /contrib/vim/ftdetect/
      198  Defl:N       79  60% 09-16-2014 20:23 68d244f2  nginx-1.6.2 /contrib/vim/ftdetect/nginx .vim
        0  Stored        0   0% 09-16-2014 20:23 00000000  nginx-1.6.2 /contrib/vim/syntax/
    31641  Defl:N     5987  81% 09-16-2014 20:23 fe4d7202  nginx-1.6.2 /contrib/vim/syntax/nginx .vim
        0  Stored        0   0% 09-22-2016 15:46 00000000  nginx-1.6.2 /contrib/unicode2nginx/

使用“unzip -t 压缩文件”,验证压缩文件的完整性

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
[root@mysql-master src] # unzip -t nginx.zip 
Archive:  nginx.zip
     testing: nginx-1.6.2. tar .gz       OK
     testing: nginx-1.6.2/             OK
     testing: nginx-1.6.2 /configure     OK
     testing: nginx-1.6.2 /contrib/      OK
     testing: nginx-1.6.2 /contrib/vim/    OK
     testing: nginx-1.6.2 /contrib/vim/indent/    OK
     testing: nginx-1.6.2 /contrib/vim/indent/nginx .vim   OK
     testing: nginx-1.6.2 /contrib/vim/ftdetect/    OK
     testing: nginx-1.6.2 /contrib/vim/ftdetect/nginx .vim   OK
     testing: nginx-1.6.2 /contrib/vim/syntax/    OK
     testing: nginx-1.6.2 /contrib/vim/syntax/nginx .vim   OK
     testing: nginx-1.6.2 /contrib/unicode2nginx/    OK
     testing: nginx-1.6.2 /contrib/unicode2nginx/koi-utf    OK
     -------------------------------------------------------
     -------------------------------------------------------
     testing: nginx-1.6.2 /Makefile      OK
     testing: nginx-1.6.2 /conf/         OK
     testing: nginx-1.6.2 /conf/uwsgi_params    OK
     testing: nginx-1.6.2 /conf/koi-utf    OK
     testing: nginx-1.6.2 /conf/win-utf    OK
     testing: nginx-1.6.2 /conf/mime .types   OK
     testing: nginx-1.6.2 /conf/fastcgi .conf   OK
     testing: nginx-1.6.2 /conf/koi-win    OK
     testing: nginx-1.6.2 /conf/fastcgi_params    OK
     testing: nginx-1.6.2 /conf/scgi_params    OK
     testing: nginx-1.6.2 /conf/nginx .conf   OK
No errors detected  in  compressed data of nginx.zip.

zip的扩展:

当我们配置好压缩文件的时候,发现其中某个比较占空间的文件并不是我们想要的,并且,我们不想重新解压和压缩。

1
2
3
4
5
6
7
8
9
10
向压缩文件中删除文件:
[root@mysql-master src] # zip nginx.zip -d nginx-1.6.2.tar.gz 
deleting: nginx-1.6.2. tar .gz
[root@mysql-master src] # unzip -v nginx.zip |grep nginx-1.6.2.tar.gz 
发现没有该文件存在了
向压缩文件中添加文件:
[root@mysql-master src] # zip -m nginx.zip nginx-1.6.2.tar.gz 
   adding: nginx-1.6.2. tar .gz (deflated 0%)
[root@mysql-master src] # unzip -v nginx.zip |grep nginx-1.6.2.tar.gz
   804164  Defl:N   804176   0% 06-22-2016 01:17 c721c245  nginx-1.6.2. tar .gz









本文转自 冰冻vs西瓜 51CTO博客,原文链接:http://blog.51cto.com/molewan/1863756,如需转载请自行联系原作者
相关实践学习
如何在云端创建MySQL数据库
开始实验后,系统会自动创建一台自建MySQL的 源数据库 ECS 实例和一台 目标数据库 RDS。
全面了解阿里云能为你做什么
阿里云在全球各地部署高效节能的绿色数据中心,利用清洁计算为万物互联的新世界提供源源不断的能源动力,目前开服的区域包括中国(华北、华东、华南、香港)、新加坡、美国(美东、美西)、欧洲、中东、澳大利亚、日本。目前阿里云的产品涵盖弹性计算、数据库、存储与CDN、分析与搜索、云通信、网络、管理与监控、应用服务、互联网中间件、移动服务、视频服务等。通过本课程,来了解阿里云能够为你的业务带来哪些帮助     相关的阿里云产品:云服务器ECS 云服务器 ECS(Elastic Compute Service)是一种弹性可伸缩的计算服务,助您降低 IT 成本,提升运维效率,使您更专注于核心业务创新。产品详情: https://www.aliyun.com/product/ecs
目录
相关文章
|
9天前
|
监控 Linux
如何检查 Linux 内存使用量是否耗尽?这 5 个命令堪称绝了!
本文介绍了在Linux系统中检查内存使用情况的5个常用命令:`free`、`top`、`vmstat`、`pidstat` 和 `/proc/meminfo` 文件,帮助用户准确监控内存状态,确保系统稳定运行。
73 6
|
10天前
|
Linux
在 Linux 系统中,“cd”命令用于切换当前工作目录
在 Linux 系统中,“cd”命令用于切换当前工作目录。本文详细介绍了“cd”命令的基本用法和常见技巧,包括使用“.”、“..”、“~”、绝对路径和相对路径,以及快速切换到上一次工作目录等。此外,还探讨了高级技巧,如使用通配符、结合其他命令、在脚本中使用,以及实际应用案例,帮助读者提高工作效率。
40 3
|
10天前
|
监控 安全 Linux
在 Linux 系统中,网络管理是重要任务。本文介绍了常用的网络命令及其适用场景
在 Linux 系统中,网络管理是重要任务。本文介绍了常用的网络命令及其适用场景,包括 ping(测试连通性)、traceroute(跟踪路由路径)、netstat(显示网络连接信息)、nmap(网络扫描)、ifconfig 和 ip(网络接口配置)。掌握这些命令有助于高效诊断和解决网络问题,保障网络稳定运行。
30 2
|
17天前
|
缓存 监控 Linux
|
21天前
|
Linux Shell 数据安全/隐私保护
|
21天前
|
域名解析 网络协议 安全
|
4天前
|
运维 监控 网络协议
运维工程师日常工作中最常用的20个Linux命令,涵盖文件操作、目录管理、权限设置、系统监控等方面
本文介绍了运维工程师日常工作中最常用的20个Linux命令,涵盖文件操作、目录管理、权限设置、系统监控等方面,旨在帮助读者提高工作效率。从基本的文件查看与编辑,到高级的网络配置与安全管理,这些命令是运维工作中的必备工具。
22 3
|
27天前
|
运维 监控 网络协议
|
10天前
|
安全 网络协议 Linux
本文详细介绍了 Linux 系统中 ping 命令的使用方法和技巧,涵盖基本用法、高级用法、实际应用案例及注意事项。
本文详细介绍了 Linux 系统中 ping 命令的使用方法和技巧,涵盖基本用法、高级用法、实际应用案例及注意事项。通过掌握 ping 命令,读者可以轻松测试网络连通性、诊断网络问题并提升网络管理能力。
38 3
下一篇
无影云桌面