linux中常用压缩与解压命令

一. tar文件的解压

1 tar -xvf db.tar

二. zip文件的压缩与解压

1 压缩
2 zip -r dest_name.zip directory_to_compress
3 解压
4 unzip dest_name.zip

三. tar.gz文件的压缩与解压

1 压缩
2 tar -zcvf dest_name.tar.gz directory_to_compress
3 解压
4 tar zxvf dest_name.tar.gz

 

posted @ 2016-05-26 21:49  会心一击  阅读(180)  评论(0编辑  收藏  举报