语法:tar [主选项+辅选项] 文件或者目录 使用该命令时,主选项是必须要有的,它告诉tar要做什么事情,辅选项是辅助使用的,可以选用。
主选项:
辅助选项: 在工作中、我们可能经常会用到的压缩操作如下:
[root@it.net.cn ~]# tar -cvf it.net.cn.tar /it.net.cn //仅打包,不压缩
[root@it.net.cn ~]# tar -zcvf it.net.cn.tar.gz /it.net.cn //打包后,以 gzip 压缩
[root@it.net.cn ~]# tar -jcvf it.net.cn.tar.bz2 /it.net.cn //打包后,以 bzip2 压缩
在执行上述命令的时候,会显示一个警告信息:tar: Removing leading `/' from member names
[root@it.net.cn /]#tar cvf it.net.cn.tar it.net.cn/ --exclude=it.net.cn/aa01 //打包过程中不打包it.net.cn目录下的aa01目录
常用的的解压操作如下:
[root@it.net.cn ~]#tar zxvf it.net.cn.tar.gz -C /opt //-C参数,将/it.net.cn.tar.gz文件解压到/opt目录
[root@it.net.cn ~]#tar zxvf it.net.cn.tar.gz it.net.cn/it.net.cn.txt //只解压it.net.cn.tar.gz中的it.net.cn/it.net.cn.txt
(责任编辑:IT) |