码迷,mamicode.com
首页 > 其他好文 > 详细

tar压缩与解压缩

时间:2016-11-15 08:27:27      阅读:168      评论:0      收藏:0      [点我收藏+]

标签:linu   目录   root   tmp   str   tar   压缩   strong   bzip2   

范例一:将整个 /etc 目录下的文件全部打包成为 /tmp/etc.tar
[root@linux ~]# tar -cvf /tmp/etc.tar /etc <==仅打包,不压缩!
[root@linux ~]# tar -zcvf /tmp/etc.tar.gz /etc <==打包后,以 gzip 压缩
[root@linux ~]# tar -jcvf /tmp/etc.tar.bz2 /etc <==打包后,以 bzip2 压缩

 

范例三:将 /tmp/etc.tar.gz 文件解压缩在 /usr/local/src 底下
[root@linux ~]# cd /usr/local/src
[root@linux src]# tar -zxvf /tmp/etc.tar.gz

tar压缩与解压缩

标签:linu   目录   root   tmp   str   tar   压缩   strong   bzip2   

原文地址:http://www.cnblogs.com/wlemory/p/6064250.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!