一,歸檔及壓縮的做用
做用:1.減少佔用的硬盤空間 2.整合分散的文件工具
2、tar命令的選項
– -c:建立歸檔
– -x:釋放歸檔
– -f:指定歸檔文件名稱,必須放在全部選項的最後
– -z、-j、-J:調用 .gz、.bz二、.xz 格式的工具進行處理
– -t:顯示歸檔中的文件清單
– -C:指定釋放路徑
spa
3、使用步驟
1.tar 製做壓縮包(打包)
格式:tar 選項 /路徑/壓縮包的名字 /路徑/源數據…….code
代碼以下:class
[root@WXR ~]# tar -zcf /opt/abc.tar.gz /home/ /etc/passwd [root@WXR ~]# tar -jcf /opt/test.tar.bz2 /home/ /etc/passwd [root@WXR ~]# tar -Jcf /opt/nsd.tar.xz /home/ /etc/passwd [root@WXR ~]# ls /opt/ abc.tar.gz nsd.tar.xz rh test.tar.bz2
2.tar 釋放壓縮包(解包)
格式:tar 選項 /路徑/tar包 -C(大寫) /路徑/目標位置
-x:釋放 -f:指定壓縮包名稱
test
代碼以下:打包
[root@WXR ~]# tar -xf /opt/abc.tar.gz -C /wxr [root@WXR ~]# ls /wxr/ etc home
3.查看tar包內容
[root@WXR ~]# tar -tf /opt/abc.tar.gz