标签:压缩和解包
一、gzip压缩和解包
1. 压缩;
[root@Centos1 ~]# gzip 2.txt
2. 解包;
[root@Centos1 ~]# gzip -d 2.txt.gz
3. 查看包压缩的内容;
[root@Centos1 ~]# zcat 1.txt.gz
二、bzip压缩和解包
1. 压缩;
[root@Centos1 ~]# bzip2 2.txt
2. 解包;
[root@Centos1 ~]# bzip2 -d 2.txt.bz2
3. 查看压缩包的内容;
[root@Centos1 ~]# bzcat 2.txt.bz2
三、zip压缩和解包
1. 压缩;
[root@Centos1 ~]# zip 2.zip 2.txt [root@Centos1 ~]# zip -r etc.zip /etc #压缩目录
2. 解包;
[root@Centos1 ~]# unzip etc.zip [root@Centos1 ~]# unzip -d /tmp etc.zip #解压到/tmp下
3. 查看压缩包的内容;
[root@Centos1 ~]# unzip -l etc.zip
四、tar压缩和解包
1. 压缩
[root@Centos1 ~]# tar -zcvf 1.tar.zg /etc [root@Centos1 ~]# tar -jcvf 1.tar.bz2 /etc [root@Centos1 ~]# tar -cvf 1.tar /etc [root@Centos1 ~]# tar -cvf 1.tar --exclude "*.sh" -exclude "*i386" /etc #exclude排除文件
2. 解包
[root@Centos1 ~]# tar -zxvf 1.tar.zg [root@Centos1 ~]# tar -jxvf 1.tar.bz2 [root@Centos1 ~]# tar -xvf 1.tar [root@Centos1 ~]# tar -xvf 1.tar -C /tmp #解压到/tmp下
3. 查看压缩的内容
[root@Centos1 ~]# tar -tf 1.tar #查看包的内容
本文出自 “陈小贱。” 博客,转载请与作者联系!
标签:压缩和解包
原文地址:http://chenxiaojian.blog.51cto.com/9345444/1625826