tar -cvf /tmp/etc.tar /etc
仅打包,不压缩!
tar -zcvf /tmp/etc.tar.gz /etc打包后,以 gzip 压缩tar -jcvf /tmp/etc.tar.bz2 /etc打包后,以 bzip2 压缩
tar xvfz[......]

阅读全文