Linux/Unix下使用tar命令压缩和解压 tar Examples

分享一下我老师大神的人工智能教程!零基础,通俗易懂!http://blog.csdn.net/jiangjunshow

也欢迎大家转载本篇文章。分享知识,造福人民,实现我们中华民族伟大复兴!

               

压缩

tar   -cvf   xxx.tar.gz yourdirectory

解压

解压tar gz(Gzip)文件tar -xzvf mystuff.tgz解压普通的tar文件tar -xvf mystuff.tar

参数的意义

c Create a new archive.
t List the contents of an archive.
x Extract the contents of an archive.
f The archive file name is given on the command line (required whenever the tar output is going to a file)
M The archive can span multiple floppies.
v Print verbose output (list file names as they are processed).
u Add files to the archive if they are newer than the copy in the tar file.
z Compress or decompress files automatically.


tar,tar.gz/tgz

特别要注意的是,".tar"文件不是一个压缩过后的文件,它只是把所有文件集中在了一个文件里,这个文件时没有进行压缩过。而".tar.gz"或者".tgz"文件是被压缩过的。

如果你想对你的tar文件,进行压缩,那么你需要再运行gzip命令。所以如果你想直接压缩,最好在执行tar命令的时候,就加上"z"选项,这样就可以省去gzip这一步。

从文件大小也能看出来.tar和.tar.gz的区别,我的一个目录下有很多源文件,不做任何处理前目录文件的大小为88M,tar命令执行后.tar文件的大小是80M,再gzip之后的大小是9.9M,可以看出.tar文件基本是未经压缩的文件,只有gzip后,文件才会被压缩。


另外需要注意的是,linux/unix中没有untar这个命令

====EOF====

转载请注明出处:http://blog.csdn.net/pan_tian/article/details/7686408


           

给我老师的人工智能教程打call!http://blog.csdn.net/jiangjunshow

这里写图片描述

猜你喜欢

转载自blog.csdn.net/hsghggt/article/details/83690828
tar