1. 压缩 tar -cf test.tar * 用 tar –xf test.tar 解压
2. 压缩 tar zcf test.tar.gz * 用 tar zxf test.tar.gz -C /tmp/test/ 解压
3. 压缩 tar jcf test.tar.bz2 * 用 tar jxf test.tar.bz2 -C /tmp/test/ 解压
4. 压缩 gzip test.gz 用 gzip -d test.gz 或 gunzip test.gz 解压
5. 压缩 bzip2 -z *.bz2 用 bzip2 -d或者用bunzip2 解压
2. 压缩 tar zcf test.tar.gz * 用 tar zxf test.tar.gz -C /tmp/test/ 解压
3. 压缩 tar jcf test.tar.bz2 * 用 tar jxf test.tar.bz2 -C /tmp/test/ 解压
4. 压缩 gzip test.gz 用 gzip -d test.gz 或 gunzip test.gz 解压
5. 压缩 bzip2 -z *.bz2 用 bzip2 -d或者用bunzip2 解压
6. 压缩 windows test.zip 或 zip test.zip * 用 unzip test.zip 解压
本文转自cloves 51CTO博客,原文链接:http://blog.51cto.com/yeqing/1784361