从事互联网开发、运营、设计、运维等工作。偏爱底层开发,服务器运维
全部博文(106)
分类: LINUX
2014-05-17 14:59:25
原文地址:http://hi.baidu.com/xingfengsoft/blog/item/36ee5734e9e3504e241f14bf.html
以每卷500M为例
tar分卷压缩:tar cvzpf - somedir | split -b 500m
压缩后的文件名为 x00 x01 x02 ......
tar多卷合并:cat x* > somedir.tar.gz
tar解压缩:tar xvfz somedir.tar.g
tar:
-c: create a new archive
-v: verbosely list files processed
-z: filter the archive through gzip
-p: extract all protection information, 释放包时使用-p参数来保留原来的权限
tar在创建包的时候有包含文件原先的权限,但是释放包的时候默认是使用新建文件的权限,而不是文件原先的权限,除非带上-p参数
-f: 定义操作所使用的tar档案文件
-x: extract files from an archive