2009年7月29日 星期三

解壓指令 - tar

tar [options] [tarfile] [other-files]
tar--long-option -function-options files


參數:
c, --create :建立一個壓縮文件
x, --extract :解開一個壓縮文件
t, --list :列出 .tar 裡面的文件!
Notice: 在參數的下達中, c/x/t 僅能存在一個!不可同時存在!因為不可能同時壓縮與解壓縮。

Z, --compress, --uncompress :使用compress命令處理備份文件
z, --gzip, --unzip :透過 gzip 處理備份文件
j, I, --bzip :使用bzip2命令處理備份文件
Notice:z和j都是在備份文件打包後才進行壓縮的操作的,並且,該操作會影響其他的參數

v, --verbose :壓縮的過程中顯示文件!不建議用在背景執行過程!
f fileName, --file=fileName :使用檔名,Notice: 在 f 之後要立即接檔名
C directoryName, --directory=directoryName :先進入指定的目錄,再釋放
--exclude FILE:在壓縮的過程中,不要將 FILE 打包!
--delete :將 .tar 中的某個檔案刪除


詳細參考:http://coz.tw/dz6/redirect.php?tid=18172&goto=lastpost


壓縮:
tar cjvf name.tar.bz2 /target /location
就地解縮:
tar xvf name.tar.bz2
解壓到不同目錄
tar xvf name.tar.bz2 -C /location

沒有留言:

張貼留言