导读:压缩后的文件名为 x00 x01 x02 ……tar多卷合并:cat x*
http://www.whatled.com.tar.gz
以每卷500M为例
先进入要压缩文件的父目录
tar分卷压缩:tar cvzpf – http://www.whatled.com | split -b 500m
压缩后的文件名为 x00 x01 x02 ……
tar多卷合并:cat x* http://www.whatled.com.tar.gz
tar解压缩:tar xvfz http://www.whatled.com.tar.gz
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