[[email protected] ~]#tar [選項] [-f 壓縮包名] 原始檔或目錄
選項:
[[email protected] ~]# tar -cvf anaconda-ks.cfg.tar anaconda-ks.cfg
#把anacondehks.cfg打包為 anacondehks.cfg.tar檔案
[[email protected] ~]# ll -d test/
drwxr-xr-x 2 root root 4096 6月 17 21:09 test/
#test是我們之前的測試目錄
[[email protected] ~]# tar -cvf test.tar test/
test/
test/test3
test/test2
test/test1
#把目錄打包為test.tar檔案
tar命令也可以打包多個檔案或目錄,只要用空格分開即可。例如:
[[email protected] ~]# tar -cvf ana.tar anaconda-ks.cfg /tmp/
#把anaconda-ks.cfg檔案和/tmp目錄打包成ana.tar檔案包
[[email protected] ~]#ll -d test test.tar
drwxr-xr-x 2 root root 4096 6月 17 21:09 test
-rw-r--r-- 1 root root 10240 6月 18 01:06 test.tar
#我們之前已經把test目錄打包成test.tar檔案
[[email protected] ~]# gzip test.tar
[[email protected] ~]# ll test.tar.gz
-rw-r--r-- 1 root root 176 6月 18 01:06 test.tar.gz
#gzip命令會把test.tar壓縮成test.tar.gz
[[email protected] ~]# gzip -d test.tar.gz
#解壓縮,把test.tar.gz解壓縮為test.tar
[[email protected] ~]# bzip2 test.tar
[[email protected] ~]# ll test.tar.bz2
-rw-r--r-- 1 root root 164 6月 18 01:06 test.tar.bz2
#bzip2命令會把test.tar壓縮為 test.tar.bz2格式
[[email protected] ~]#tar [選項] 壓縮包
選項:
[[email protected] ~]# tar -xvf anaconda-ks.cfg. tar
#解打包到當前目錄下
[[email protected] ~]# tar -xvf test.tar -C /tmp
#把檔案包test.tar解打包到/tmp/目錄下
[[email protected] ~]# tar -tvf test.tar
drwxr-xr-x root/root 0 2016-06-17 21:09 test/
-rw-r-r- root/root 0 2016-06-17 17:51 test/test3
-rw-r-r- root/root 0 2016-06-17 17:51 test/test2
-rw-r-r- root/root 0 2016-06-17 17:51 test/test1
#會用長格式顯示test.tar檔案包中檔案的詳細資訊
[[email protected] ~]#tar [選項] 壓縮包 原始檔或目錄
選項:
[[email protected] ~]# tar -zcvf tmp.tar.gz /tmp/
#把/temp/目錄直接打包壓縮為".tar.gz"格式,通過"-z"來識別格式,"-cvf"和打包選項一致
[[email protected] ~]# tar -zxvf tmp.tar.gz
#解壓縮與解打包".tar.gz"格式
[[email protected] ~]# tar -jcvf tmp.tar.bz2 /tmp/
#打包壓縮為".tar.bz2"格式,注意壓縮包檔名
[[email protected] ~]# tar -jxvf tmp.tar.bz2
#解壓縮與解打包".tar.bz2"格式