Linux学习笔记四之压缩解压命令
相关链接:
Linux学习笔记一之文件操作命令
http://www.zhishiwu.com/os/201211/169196.html;
Linux学习笔记二之权限管理命令
http://www.zhishiwu.com/os/201211/169485.html;
Linux学习笔记三之文件搜索的命令
http://www.zhishiwu.com/os/201211/169489.html
1、压缩文件 www.zhishiwu.com
gzip 压缩文件 格式为.gz
特点:只能压缩文件不能压缩目录;不保留源文件
gzip 文件名
[root@CentOS-Test data]# gzip xx_lhc.txt
[root@CentOS-Test data]# ls
bak lost+found testdir1 testdir2 xx_lhc.txt.gz
2、解压缩文件
gzip -d
[root@CentOS-Test data]# gzip -d xx_lhc.txt.gz
[root@CentOS-Test data]# ls
bak lost+found testdir1 testdir2 xx_lhc.txt
3、压缩文件夹
tar 打包的目录名 格式为.tar.gz
tar参数:
-c:产生.tar打包文件 -v:显示详细信息 -f:指定压缩后的文件名 -z:打包同时压缩
[root@CentOS-Test data]# tar -zcvf newdir.tar.gz testdir1
testdir1/
可是使用file filename来判断文件是什么类型
如果上述命令在某些linux版本的操作系统下不支持,可是先打包再压缩
[root@CentOS-Test data]# tar -cvf xx_lhc.tar xx_lhc.txt
[root@CentOS-Test data]# gzip xx_lhc.tar
4、解压缩文件夹
tar命令解压缩参数 -x:解包.tar文件 -f:指定解压文件 -v:显示详细信息 -z:解压
[root@CentOS-Test data]# tar -xzvf xx_lhc.tar.gz
xx_lhc.txt
zip压缩命令,不仅可以压缩文件,还可以压缩目录(使用-r参数),并且压缩文件时源文件依然存在
例如:
压缩文件:
[root@CentOS-Test data]# zip xx_lhc.zip xx_lhc.txt
adding: xx_lhc.txt (deflated 22%) 22%是压缩比
[root@CentOS-Test data]# ll
-rw-r--r--. 1 root root 428 11月 18 20:00 xx_lhc.txt
-rw-r--r--. 1 root root 502 11月 18 21:30 xx_lhc.zip
压缩目录
例如:
[root@CentOS-Test data]# zip -r bak.zip bak
adding: bak/ (stored 0%)
adding: bak/lhc.txt (deflated 22%)
adding: bak/李海超个人信息.txt (deflated 22%)
.zip格式的解压缩
命令:unzip 压缩包名称
bzip2压缩命令,适合压缩文件比较大的文件,压缩比很高,格式为.bz2,只能压缩文件
压缩文件,使用-k参数可以保留原文件名
[root@CentOS-Test data]# bzip2 -k xx_lhc.txt
-rw-r--r--. 1 root root 378 11月 18 20:00 xx_lhc.txt.bz2
解压缩.bz2格式的文件
[root@CentOS-Test data]# bunzip2 xx_lhc.txt.bz2