码迷,mamicode.com
首页 > 系统相关 > 详细

Linux压缩文件-高强度压缩

时间:2019-04-16 15:59:19      阅读:404      评论:0      收藏:0      [点我收藏+]

标签:bzip   zip2   provides   col   .sql   bzip2   linux   The   操作   

安装压缩文件
[root@prometheus ~]# yum provides "*bunzip2"
[root@prometheus ~]# yum install bzip2

[root@prometheus ~]# du -sh 20190328_0003api.sql.tar.bz
1.6M 20190328_0003api.sql.tar.bz
[root@prometheus ~]#
[root@prometheus ~]# du -sh 20190328_0003api.sql.tar.bz
1.6M 20190328_0003api.sql.tar.bz
[root@prometheus ~]# bunzip2 20190328_0003api.sql.tar.bz
[root@prometheus ~]# ll
总用量 52300
-rw-r--r-- 1 root root 53555200 3月 28 11:18 20190328_0003api.sql.tar
[root@prometheus ~]# du -sh 20190328_0003api.sql.tar
52M 20190328_0003api.sql.tar
[root@prometheus ~]# tar -xf 20190328_0003api.sql.tar
[root@prometheus ~]# ll
总用量 104596
-rw-r----- 1 root root 53547626 3月 28 11:13 20190328_0003api.sql
-rw-r--r-- 1 root root 53555200 3月 28 11:18 20190328_0003api.sql.tar
[root@prometheus ~]# du -sh ./*
52M ./20190328_0003api.sql
52M ./20190328_0003api.sql.tar


压缩文件操作:
[root@prometheus ~]# ll
总用量 52296
-rw-r----- 1 root root 53547626 3月 28 11:13 20190328_0003api.sql
[root@prometheus ~]#

[root@prometheus ~]# bzip2 20190328_0003api.sql
您在 /var/spool/mail/root 中有新邮件
[root@prometheus ~]# ll
总用量 1632
-rw-r----- 1 root root 1668897 3月 28 11:13 20190328_0003api.sql.bz2
[root@prometheus ~]# du -sh ./*
1.6M ./20190328_0003api.sql.bz2

将52M的文件压缩成1.6M,压缩程度非常高。


[root@prometheus ~]# tar -zcvf 20190328_0003api.sql.tar.bz2 20190328_0003api.sql
20190328_0003api.sql
[root@prometheus ~]# ll
总用量 54936
-rw-r----- 1 root root 53547626 3月 28 11:13 20190328_0003api.sql
-rw-r--r-- 1 root root 2702298 3月 28 15:01 20190328_0003api.sql.tar.bz2
[root@prometheus ~]# du -sh
54M .
[root@prometheus ~]# tar -zcvf 20190328_0003api.sql.tar.bz2 20190328_0003api.sql
20190328_0003api.sql
[root@prometheus ~]# ll
总用量 54936
-rw-r----- 1 root root 53547626 3月 28 11:13 20190328_0003api.sql
-rw-r--r-- 1 root root 2702298 3月 28 15:01 20190328_0003api.sql.tar.bz2
[root@prometheus ~]# du -sh ./*
52M ./20190328_0003api.sql
2.6M ./20190328_0003api.sql.tar.bz2

Linux压缩文件-高强度压缩

标签:bzip   zip2   provides   col   .sql   bzip2   linux   The   操作   

原文地址:https://www.cnblogs.com/sunnyyangwang/p/10717598.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!