第八章-文档的压缩与打包

在windows下我们接触最多的压缩文件就是.rar格式的了。但在linux下这样的格式是不能识别的,它有自己所特有的压缩工具。但有一种文件在windows和linux下都能使用那就是.zip格式的文件了。压缩的好处不用阿铭介绍相信你也晓得吧,它不仅能节省磁盘空间而且在传输的时候还能节省网络带宽呢。

在linux下最常见的压缩文件通常都是以.tar.gz 为结尾的,除此之外还有.tar, .gz, .bz2, .zip等等。以前也介绍过linux系统中的后缀名其实要不要无所谓,但是对于压缩文件来讲必须要带上。这是为了判断压缩文件是由哪种压缩工具所压缩,而后才能去正确的解压缩这个文件。以下介绍常见的后缀名所对应的压缩工具。

.gz gzip 压缩工具压缩的文件

.bz2 bzip2 压缩工具压缩的文件

.tar tar 打包程序打包的文件(tar并没有压缩功能,只是把一个目录合并成一个文件)

.tar.gz 可以理解为先用tar打包,然后再gzip压缩

.tar.bz2 同上,先用tar打包,然后再bzip2压缩

1.gzip压缩工具

“-d” : 解压缩时使用

“-#” : 压缩等级,1压缩最差,9压缩最好,6为默认

[[email protected] ~]# [ -d test ] && rm -rf test

[[email protected] ~]# mkdir test

[[email protected] ~]# mv test.txt test

[[email protected] ~]# cd test

[[email protected] test]# ls

test.txt

[[email protected] test]# gzip test.txt

[[email protected] test]# ls

test.txt.gz

你对第一条命令也许很陌生,其实这是两条命令,[ ] 内是一个判断,”-d test” 判断test目录是否存在,’&&’ 为一个连接命令符号,当前面的命令执行成功后,后面的命令才执行。关于这两块内容阿铭会在后面详细讲解。gzip 后面直接跟文件名,就在当前目录下把该文件压缩了,而原文件也会消失。

[[email protected] test]# gzip -d test.txt.gz

[[email protected] test]# ls

test.txt

“gzip -d” 后面跟压缩文件,会解压压缩文件。gzip 是不支持压缩目录的。

[[email protected] ~]# gzip test

gzip: test is a directory -- ignored

[[email protected] ~]# ls test

test/ test1 test2/ test3

[[email protected] ~]# ls test

test.txt

至于 “-#” 选项,平时很少用,使用默认压缩级别足够了。

2.bzip2压缩工具

bzip2 只有两个选项需要你掌握。

“-d” : 解压缩

“-z” : 压缩

压缩时,可以加 “-z” 也可以不加,都可以压缩文件,”-d” 则为解压的选项:

[[email protected] ~]# cd test

[[email protected] test]# bzip2 test.txt

[[email protected] test]# ls

test.txt.bz2

[[email protected] test]# bzip2 -d test.txt.bz2

[[email protected] test]# bzip2 -z test.txt

[[email protected] test]# ls

test.txt.bz2

bzip2 同样也不可以压缩目录:

[[email protected] test]# cd ..

[[email protected] ~]# bzip2 test

bzip2: Input file test is a directory.

3.xz压缩工具

bzip2 -d 1.txt.bz2

xz 1.txt

ls

xz -d 1.txt.xz

xz -z 1.txt

ls

4.tar压缩工具

tar 本身为一个打包工具,可以把目录打包成一个文件,它的好处是它把所有文件整合成一个大文件整体,方便拷贝或者移动。

“-z” : 同时用gzip压缩

“-j” : 同时用bzip2压缩

“-x” : 解包或者解压缩

“-t” : 查看tar包里面的文件

“-c” : 建立一个tar包或者压缩文件包

“-v” : 可视化

“-f” : 后面跟文件名,压缩时跟 “-f 文件名”,意思是压缩后的文件名为filename, 解压时跟 “-f 文件名”,意思是解压filename. 请注意,如果是多个参数组合的情况下带有 “-f”,请把 “-f” 写到最后面。

“-p” : 使用原文件的属性,压缩前什么属性压缩后还什么属性。(不常用)

“-P” : 可以使用绝对路径。(不常用)

--exclude filename : 在打包或者压缩时,不要将filename文件包括在内。(不常用)

cd test

xz -d 1.txt.xz

mkdir test111

touch test111/2.txt

echo "nihao" > !$

echo "nihao" > test111/2.txt

cp 1.txt test111/

yum install tree //安装tree命令,用来查看目录树结构

tree .

.

├── test111

│   ├── 2.txt

│   └── test.txt

└── test.txt

1 directory, 3 files

tar -cvf test111.tar test111

test111/

test111/2.txt

test111/1.txt

ls

首先在test目录下建立test111目录,然后在test111目录下建立test2.txt, 并写入 “nihao” 到test2.txt中,接着是用tar把test111打包成test111.tar. 请记住 “-f” 参数后跟的是打包后的文件名, 然后再是要打包的目录或者文件。tar 打包后,原文件不会消失,而依旧存在。在上例中,阿铭使用一个特殊的符号 ”!$” 它表示上一条命令的最后一个参数,比如在本例中,它表示”test111/test2.txt”. tar 不仅可以打包目录也可以打包文件,打包的时候也可以不加 “-v” 选项表示,表示不可视化。

[[email protected] test]# rm -f test111.tar

[[email protected] test]# tar -cf test.tar test111 test.txt

[[email protected] test]# ls

test111 test.tar test.txt.bz2

删除原来的test111目录,然后解包test.tar,不管是打包还是解包,原来的文件是不会删除的,而且它会覆盖当前已经存在的文件或者目录。

[[email protected] test]# rm -rf test111

[[email protected] test]# ls

test.tar test.txt.bz2

[[email protected] test]# tar -xvf test.tar

test111/

test111/test2.txt

test.txt.bz2

5.打包的同时使用gzip压缩

tar命令非常好用的一个功能就是可以在打包的时候直接压缩,它支持gzip压缩和bzip2压缩。

[[email protected] test]# tar -czvf test111.tar.gz test111

test111/

test111/test2.txt

[[email protected] test]# ls

test111 test111.tar.gz test.tar test.txt.bz2

“-tf” 可以查看包或者压缩包的文件列表:

[[email protected] test]# tar -tf test111.tar.gz

test111/

test111/test2.txt

[[email protected] test]# tar -tf test.tar

test111/

test111/test2.txt

test.txt.bz2

“-zxvf” 用来解压.tar.gz的压缩包

[[email protected] test]# rm -rf test111

[[email protected] test]# ls

test111.tar.gz test.tar test.txt.bz2

[[email protected] test]# tar -zxvf test111.tar.gz

test111/

test111/test2.txt

[[email protected] test]# ls

test111 test111.tar.gz test.tar test.txt.bz2

6.打包的同时使用bzip2压缩

和gzip压缩不同的是,这里使用 “-cjvf” 选项来压缩

[[email protected] test]# tar -cjvf test111.tar.gz test111

test111/

[[email protected] test]# ls

test111 test111.tar.gz test.tar test.txt

[[email protected] test]#

同样可以使用 “-tf” 来查看压缩包文件列表

[[email protected] test]# tar -tf test111.tar.gz

test111/

7.打包的同时使用.tar.bz2压缩

[[email protected] test]# tar -cjvf test111.tar.bz2 test111

test111/

使用-tf选项来查看压缩包的文件列表,示例命令如下:

tar -tf test111.tar.bz2

[[email protected] test]# tar -tf test111.tar.bz2

test111/

8.使用zip压缩

压缩zip文件

yum install -y zip 安装zip

[[email protected] test]# zip 1.txt.zip 111.txt

updating: 111.txt (stored 0%)

[[email protected] test]# zip test111.zip test111/*

updating: test111/ (stored 0%)

解压zip文件

yum install -y unzip

[[email protected] test]# unzip 1.txt.zip

Archive: 1.txt.zip

replace 111.txt? [y]es, [n]o, [A]ll, [N]one, [r]ename: y

extracting: 111.txt

9.zcat、bzcat命令的使用

上面介绍了使用-t选项可以查看tar压缩包的文件列表,对于gzip2或者bzip2压缩格式的文本文档,我们也可以使用zcat,bzcat命令直接查看文档内容

cp /etc/passwd ./11.txt

cp 11.txt 22.txt

gzip 11.txt

bzip2 22.txt

zcat 11.txt.gz

bzcat 22.txt.bz2

时间: 2024-11-01 18:50:04

第八章-文档的压缩与打包的相关文章

15、Linux文档的压缩与打包

Linux文档的压缩与打包 概述 compress和uncompress gzip压缩工具 bzip2压缩工具 zip压缩工具 tar压缩工具 cpio压缩工具(主要用来备份还原) Linux文档的压缩与打包 概述 本章将介绍Linux系统中的压缩和解压缩的工具,以及归档工具(tar,cpio) compress/uncompress:    //对应 .Z 结尾的压缩格式文件:gzip/gunzip:            //其对应的是 .gz 结尾的压缩格式文件:bzip2/bunzip2

Linux学习笔记(十三)--命令学习(文档的压缩与打包)

现在 1.网上下载的文件档都是压缩文件. 2.减少空间要用到压缩文件. 所以我们有必要学下怎么对文件的压缩与解压. linux 文档的压缩与打包命令 在linux中支持的压缩方式好多,但最常用的压缩方式是:     tar 命令 其压缩方式也有二种(gz & bz2)     现在我们要开始学习它的使用..... 命令 tar 功能 把文件进行打包与解包 语法 tar [-zjxcvfpP] filename 扩展 -z :是否同时用gzip压缩 -j :是否同时用bzip2压缩 -x :解包或

第11章 linux文档的压缩与打包

1. gzip, bzip2 能否直接压缩目录呢?   不能2. 请快速写出,使用gzip和bzip2压缩和解压一个文件的命令.  压缩 gzip 1.txt ;  解压gzip -d 1.txt.gz bzip 1.txt : 解压bzip -d 1.txt.bz23. tar 在打包的时候,如果想排除多个文件或者目录如何操作?   tar -cvf file.tar --exclude.a.txt --exclude b.txt 123/4. 请实验,如果不加 "-" 是否正确,

2015-03-27Linux文档的压缩和打包

内容概要: 1. gzip工具 2. bzip2压缩工具 3. xz 4. zip及unzip 5. tar打包工具 语法:tar [-zjxcvfpP] filename 辨析:首先要弄清两个概念:打包和压缩.打包是指将一大堆文件或目录变成一个总的文件:压缩则是将一个大的文件通过一些压缩算法变成一个小文件. 在参数 f 之后的文件档名是自己取的,我们习惯上都用 .tar 来作为辨识. 如果加 z 参数,则以 .tar.gz 或 .tgz 来代表 gzip 压缩过的 tar包: 如果加 j 参数

linux入门教程(十) 文档的压缩与打包

在windows下我们接触最多的压缩文件就是.rar格式的了.但在linux下这样的格式是不能识别的,它有自己所特有的压缩工具.但有一种文件在windows和linux下都能使用那就是.zip格式的文件了.压缩的好处不用笔者介绍相信你也晓得吧,它不仅能节省磁盘空间而且在传输的时候还能节省网络带宽呢. 在linux下最常见的压缩文件通常都是以.tar.gz 为结尾的,除此之外还有.tar, .gz, .bz2, .zip等等.以前也介绍过linux系统中的后缀名其实要不要无所谓,但是对于压缩文件来

文档的压缩与打包

本系列的博客来自于:http://www.92csz.com/study/linux/ 在此,感谢原作者提供的入门知识 这个系列的博客的目的在于将比较常用的liunx命令从作者的文章中摘录下来,供自己学习和复习之用. 在linux下最常见的压缩文件通常都是以.tar.gz 为结尾的,除此之外还有.tar, .gz, .bz2, .zip等等.以前也介绍过linux系统中的后缀名其实要不要无所谓,但是对于压缩文件来讲必须要带上.这是为了判断压缩文件是由哪种压缩工具所压缩,而后才能去正确的解压缩这个

Linux文档的压缩和打包

摘自:http://www.apelearn.com/bbs/forum.php?mod=viewthread&tid=7660&extra=page%3D1%26filter%3Dtypeid%26typeid%3D36 1. gzip工具语法: gzip [-d#] filename 其中#为1-9的数字,默认压缩级别为6,只能压缩文件gzip filename 生成filename.gz 源文件消失gzip -dv filename.gz 解压后,压缩文件也会消失(-v显示指令执行过

2015.3.27 Linux文档的压缩和打包

1.gzip工具   不支持压缩目录 语法:gzip [-d#] filename 其中#为1-9的数字,默认压缩级别为6 只能压缩文件 gzip filename 生成filename.gz源文件消失 解压gzip -d filename.gz解压后,压缩文件也会消失 2.bzip2压缩工具  不支持压缩目录 语法:bzip2 [-dz] filename 压缩时,可以加"-z"也可以不加,都可以压缩文件,bzip2 filename生成filename.bz2源文件消失 不支持压缩

Linux文档的压缩与打包

linux系统中的后缀名其实要不要无所谓,但是对于压缩文件来讲必须要带上.这是为了判断压缩文件是由哪种压缩工具所压缩,而后才能去正确的解压缩这个文件.Linux压缩文件常见的后缀名所对应的压缩工具: .gz :gzip 压缩工具压缩的文件 .bz2:bzip2 压缩工具压缩的文件 .tar:tar 打包程序打包的文件(tar并没有压缩功能,只是把一个目录合并成一个文件) .tar.gz:可以理解为先用tar打包,然后再gzip压缩 .tar.bz2:先用tar打包,然后再bzip2压缩 1. g