【转载】linux 压缩和解压缩命令gz、tar、zip、bz2
linux系统下压缩解压缩很让人头大,每次都要查命令。转载下方便以后查阅。原文信息如下:
作者:capecape
来源:csdn
原文:https://blog.csdn.net/capecape/article/details/78548723
-------------------------------------------------------------------------------------
一、gzip
压缩后的格式为:*.gz
这种压缩方式不能保存原文件;且不能压缩目录
命令举例:
#压缩
[root@localhost tmp]# gzip buodo
[root@localhost tmp]# ls
buodo.gz
#解压
[root@localhost tmp]# gunzip buodo.gz
[root@localhost tmp]# ls
buodo
二、tar
命令选项:
-z(gzip) 用gzip来压缩/解压缩文件
-j(bzip2) 用bzip2来压缩/解压缩文件
-v(verbose) 详细报告tar处理的文件信息
-c(create) 创建新的档案文件
-x(extract) 解压缩文件或目录
-f(file) 使用档案文件或设备,这个选项通常是必选的。
命令举例:
#压缩
[root@localhost tmp]# tar -zvcf buodo.tar.gz buodo
[root@localhost tmp]# tar -jvcf buodo.tar.bz2 buodo
#解压
[root@localhost tmp]# tar -zvxf buodo.tar.gz
[root@localhost tmp]# tar -jvxf buodo.tar.bz2
三、zip
与gzip相比:1)可以压缩目录; 2)可以保留原文件;
选项:
-r(recursive) 递归压缩目录内的所有文件和目录
命令举例:
#压缩和解压文件
[root@localhost tmp]# zip boduo.zip boduo
[root@localhost tmp]# unzip boduo.zip
#压缩和解压目录
[root@localhost tmp]# zip -r demo.zip demo
adding: demo/ (stored 0%)
adding: demo/test2/ (stored 0%)
adding: demo/test1/ (stored 0%)
adding: demo/test1/test4 (stored 0%)
adding: demo/test3 (stored 0%)
[root@localhost tmp]# unzip demo.zip
archive: demo.zip
creating: demo/
creating: demo/test2/
creating: demo/test1/
extracting: demo/test1/test4
extracting: demo/test3
四、bzip2
压缩后的格式:.bz2
参数
-k 产生压缩文件后保留原文件
命令举例
#压缩
[root@localhost tmp]# bzip2 boduo
[root@localhost tmp]# bzip2 -k boduo
#解压
[root@localhost tmp]# bunzip2 boduo.bz2
下一篇: centos下搭建YII环境
推荐阅读
-
linux下tar.gz、tar、bz2、zip等解压缩、压缩命令小结
-
linux命令学习:解压缩.tar .gz .xz .bz .zip详情
-
【转载】linux 压缩和解压缩命令gz、tar、zip、bz2
-
Linux(CentOS7)压缩和解压缩war包、tar包、tar.gz包命令
-
在Linux系统中使用tar命令压缩和解压文件的教程
-
Linux进行zip和tar文件的打包压缩和解压缩命令
-
Linux通过命令压缩与解压缩的方法| tar, tar.gz, tar.bz2
-
linux下tar.gz、tar、bz2、zip等解压缩、压缩命令小结
-
Linux(CentOS7)压缩和解压缩war包、tar包、tar.gz包命令
-
linux命令学习:解压缩.tar .gz .xz .bz .zip详情