tar压缩与解压缩
Posted S大好人S
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了tar压缩与解压缩相关的知识,希望对你有一定的参考价值。
范例一:将整个 /etc 目录下的文件全部打包成为 /tmp/etc.tar
[[email protected] ~]# tar -cvf /tmp/etc.tar /etc <==仅打包,不压缩!
[[email protected] ~]# tar -zcvf /tmp/etc.tar.gz /etc <==打包后,以 gzip 压缩
[[email protected] ~]# tar -jcvf /tmp/etc.tar.bz2 /etc <==打包后,以 bzip2 压缩
范例三:将 /tmp/etc.tar.gz 文件解压缩在 /usr/local/src 底下
[[email protected] ~]# cd /usr/local/src
[[email protected] src]# tar -zxvf /tmp/etc.tar.gz
以上是关于tar压缩与解压缩的主要内容,如果未能解决你的问题,请参考以下文章