[root@linux ~]# tar [-cxtzjvfpPN] 文件與目錄 ....
-c :創建一個壓縮文件的參數指令(create 的意思);node
-x :解開一個壓縮文件的參數指令!linux
-t :查看 tarfile 裏面的文件!spa
特別注意,在參數的下達中, c/x/t 僅能存在一個!不可同時存在!由於不可能同時壓縮與解壓縮。orm
-z :是否同時具備 gzip 的屬性?亦便是否須要用 gzip 壓縮?ip
-j :是否同時具備 bzip2 的屬性?亦便是否須要用 bzip2 壓縮?input
-v :壓縮的過程當中顯示文件!這個經常使用,但不建議用在背景執行過程!it
-f :使用檔名,請留意,在 f 以後要當即接檔名喔!不要再加參數!io
例如使用『 tar -zcvfP tfile sfile』就是錯誤的寫法,要寫成『 tar -zcvPf tfile sfile』纔對喔!table
-p :使用原文件的原來屬性(屬性不會依據使用者而變)form
-P :可使用絕對路徑來壓縮!
-N :比後面接的日期(yyyy/mm/dd)還要新的纔會被打包進新建的文件中!
--exclude FILE:在壓縮的過程當中,不要將 FILE 打包!
[root@linux ~]# tar -cvf /tmp/etc.tar /etc <==僅打包,不壓縮!
[root@linux ~]# tar -zcvf /tmp/etc.tar.gz /etc <==打包後,以 gzip 壓縮
[root@linux ~]# tar -jcvf /tmp/etc.tar.bz2 /etc <==打包後,以 bzip2 壓縮
特別注意,在參數 f 以後的文件檔名是本身取的,咱們習慣上都用 .tar 來做爲辨識。,若是加 z 參數,
則以 .tar.gz 或 .tgz 來表明 gzip 壓縮過的 tar file ~,若是加 j 參數,
則以 .tar.bz2 來做爲附檔名啊~,上述指令在執行的時候,
會顯示一個警告訊息:『tar: Removing leading `/' from member names』那是關於絕對路徑的特殊設定。
[root@linux ~]# tar -ztvf /tmp/etc.tar.gz
由於咱們使用 gzip 壓縮,因此要查閱該 tar file 內的文件時,就得要加上 z 這個參數了!這很重要的!
[root@linux ~]# cd /usr/local/src
[root@linux src]# tar -zxvf /tmp/etc.tar.gz
在預設的狀況下,咱們能夠將壓縮檔在任何地方解開的!以這個範例來講,
我先將工做目錄變換到 /usr/local/src 底下,而且解開 /tmp/etc.tar.gz ,
則解開的目錄會在 /usr/local/src/etc 呢!另外,若是您進入 /usr/local/src/etc 則會發現,
該目錄下的文件屬性與 /etc/ 可能會有所不一樣喔!
[root@linux ~]# cd /tmp
[root@linux tmp]# tar -zxvf /tmp/etc.tar.gz etc/passwd
我能夠透過 tar -ztvf 來查閱 tarfile 內的文件名稱,若是單隻要一個文件,就能夠透過這個方式來下達!
注意到! etc.tar.gz 內的根目錄 / 是被拿掉了!
[root@linux ~]# tar -zxvpf /tmp/etc.tar.gz /etc
這個 -p 的屬性是很重要的,尤爲是當您要保留本來文件的屬性時!
[root@linux ~]# tar -N '2005/06/01' -zcvf home.tar.gz /home
[root@linux ~]# tar --exclude /home/dmtsai -zcvf myfile.tar.gz /home/* /etc
[root@linux ~]# cd /tmp
[root@linux tmp]# tar -cvf - /etc | tar -xvf -
這個動做有點像是 cp -r /etc /tmp 啦~依舊是有其有用途的!要注意的地方在於輸出檔變成 -
而輸入檔也變成 - ,又有一個 | 存在~這分別表明 standard output, standard input 與管線命令啦!
[root@linux ~]# gzip [-cdt#] 檔名
[root@linux ~]# zcat 檔名.gz
-c :將壓縮的資料輸出到螢幕上,可透過資料流重導向來處理;
-d :解壓縮的參數;
-t :能夠用來檢驗一個壓縮檔的一致性~看看文件有無錯誤;
-# :壓縮等級,-1 最快,可是壓縮比最差、-9 最慢,可是壓縮比最好!預設是 -6 ~
[root@linux ~]# cd /tmp
[root@linux tmp]# cp /etc/man.config .
[root@linux tmp]# gzip man.config
此時 man.config 會變成 man.config.gz !
[root@linux tmp]# zcat man.config.gz
此時螢幕上會顯示 man.config.gz 解壓縮以後的文件內容!!
[root@linux tmp]# gzip -d man.config.gz
[root@linux tmp]# gzip -9 -c man.config > man.config.gz
[root@linux ~]# bzip2 [-cdz] 檔名
[root@linux ~]# bzcat 檔名.bz2
-c :將壓縮的過程產生的資料輸出到螢幕上!
-d :解壓縮的參數
-z :壓縮的參數
-# :與 gzip 一樣的,都是在計算壓縮比的參數, -9 最佳, -1 最快!
[root@linux tmp]# bzip2 -z man.config
此時 man.config 會變成 man.config.bz2 !
[root@linux tmp]# bzcat man.config.bz2
此時螢幕上會顯示 man.config.bz2 解壓縮以後的文件內容!!
[root@linux tmp]# bzip2 -d man.config.bz2
[root@linux tmp]# bzip2 -9 -c man.config > man.config.bz2
[root@linux ~]# compress [-dcr] 文件或目錄
-d :用來解壓縮的參數
-r :能夠連同目錄下的文件也同時給予壓縮呢!
-c :將壓縮資料輸出成爲 standard output (輸出到螢幕)
[root@linux ~]# cd /tmp
[root@linux tmp]# cp /etc/man.config .
[root@linux tmp]# compress man.config
[root@linux tmp]# ls -l -rw-r--r-- 1 root root 2605 Jul 27 11:43 man.config.Z
[root@linux tmp]# compress -d man.config.Z
[root@linux tmp]# compress -c man.config > man.config.back.Z
[root@linux tmp]# ll man.config*
-rw-r--r-- 1 root root 4506 Jul 27 11:43 man.config
-rw-r--r-- 1 root root 2605 Jul 27 11:46 man.config.back.Z
這個 -c 的參數比較有趣!他會將壓縮過程的資料輸出到螢幕上,而不是寫入成爲 file.Z 文件。
因此,咱們能夠透過資料流重導向的方法將資料輸出成爲另外一個檔名。
[root@linux ~]# dd if="input_file" of="outptu_file" bs="block_size" / count="number"
if :就是 input file 囉~也能夠是裝置喔!
of :就是 output file 喔~也能夠是裝置;
bs :規劃的一個 block 的大小,若是沒有設定時,預設是 512 bytes
count:多少個 bs 的意思。
[root@linux ~]# dd if=/etc/passwd of=/tmp/passwd.back
3+1 records in
3+1 records out
[root@linux ~]# ll /etc/passwd /tmp/passwd.back
-rw-r--r-- 1 root root 1746 Aug 25 14:16 /etc/passwd
-rw-r--r-- 1 root root 1746 Aug 29 16:57 /tmp/passwd.back
仔細的看一下,個人 /etc/passwd 文件大小爲 1746 bytes,由於我沒有設定 bs ,
因此預設是 512 bytes 爲一個單位,所以,上面那個 3+1 表示有 3 個完整的 512 bytes,
以及未滿 512 bytes 的另外一個 block 的意思。事實上,感受好像是 cp 這個指令啦~
[root@linux ~]# dd if=/dev/hda of=/tmp/mbr.back bs=512 count=1
1+0 records in
1+0 records out
這就得好好瞭解一下囉~咱們知道整顆硬盤的 MBR 爲 512 bytes,就是放在硬盤的第一個 sector 啦,
所以,我能夠利用這個方式來將 MBR 內的全部資料都紀錄下來,真的很厲害吧! ^_^
[root@linux ~]# dd if=/dev/hda1 of=/some/path/filenaem
這個指令很厲害啊!將整個 partition 的內容所有備份下來~後面接的 of 必需要不是在 /dev/hda1 的目錄內啊~
不然,怎麼讀也讀不完~這個動做是頗有效用的,若是改天你必需要完整的將整個 partition 的內容填回去,
則能夠利用 dd if=/some/file of=/dev/hda1 來將資料寫入到硬盤當中。若是想要整個硬盤備份的話,
就相似 Norton 的 ghost 軟體通常,由 disk 到 disk ,嘿嘿~利用 dd 就能夠啦~厲害厲害!
[root@linux ~]# cpio -covB > [file|device] <==備份
[root@linux ~]# cpio -icduv < [file|device] <==還原
-o :將資料 copy 輸出到文件或裝置上
-i :將資料自文件或裝置 copy 出來系統當中
-t :查看 cpio 創建的文件或裝置的內容
-c :一種較新的 portable format 方式儲存
-v :讓儲存的過程當中文件名稱能夠在螢幕上顯示
-B :讓預設的 Blocks 能夠增長至 5120 bytes ,預設是 512 bytes !
這樣的好處是可讓大文件的儲存速度加快(請參考 i-nodes 的觀念)
-d :自動創建目錄!由於 cpio 的內容可能不是在同一個目錄內,如此的話在反備份的過程會有問題!
這個時候加上 -d 的話,就能夠自動的將須要的目錄創建起來了!
-u :自動的將較新的文件覆蓋較舊的文件!
[root@linux ~]# find / -print | cpio -covB > /dev/st0
通常來講,使用 SCSI 介面的磁帶機,代號是 /dev/st0 喔!
[root@linux ~]# cpio -icdvt < /dev/st0
[root@linux ~]# cpio -icdvt < /dev/st0 > /tmp/content
第一個動做當中,會將磁帶機內的檔名列出到螢幕上面,而咱們能夠透過第二個動做,將全部的檔名統統紀錄到 /tmp/content 文件去!
[root@linux ~]# cpio -icduv < /dev/st0
通常來講,使用 SCSI 介面的磁帶機,代號是 /dev/st0 喔!
[root@linux ~]# find /etc -type f | cpio -o > /root/etc.cpio
這樣就可以備份囉~您也能夠將資料以 cpio -i < /root/etc.cpio 來將資料捉出來!!!!