tar cvf name.tar directory ----umcompress
tar cvzf name.tar.gz directory --gzip compress and packed
tar xvf name.tar
tar xzvf name.tar.gz
tar cvfj name.tar.bz2 directory --bzip2 compress and packed
tar xjvf name.tar.bz2
tar tvf name.tar --view tar
tar tvzf name.tar.gz
tar tvjf name.tar.bz2
gzip vs bzip2: bzip2 takes more time to compress and decompress than gzip. bzip2 archival size is less than gzip.
阅读(396) | 评论(0) | 转发(0) |