filename1 [ filename2, ... filenamen ]
directory1 [ directory2, ...directoryn ]
描述tar 程式用於儲存或展開 tar 存檔檔案。存檔檔案可放在磁碟中 ,也可以存為普通檔案。 tar是需要引數的,可選的引數是a、c、d、r、t、u、x,您在使用tar時必須首先為 tar 指定至少乙個引數;然後,您必須指定要處理的檔案或目錄。如果指定乙個目錄則該目錄下的所有子目錄都將被加入存檔。
應用舉例:
1)展開 abc.tar.gz 使用命令: tar xvzf abc.tar.gz 展開 abc.tar 使用命令: tar xvf abc.tar
2)將當前目錄下的 man 目錄及其子目錄存成存檔 man.tar tar cf man.tar ./man
引數說明
執行tar時必須要有下列引數中的至少乙個才可執行
其他引數
--atime-preserve
不改變轉儲檔案的訪問時間
-b, --block-size n
指定塊大小為 nx512 位元組(預設時 n=20)
-b, --read-full-blocks
讀取時重組塊(???!!!)
-c, --directory dir
轉到指定的目錄
--checkpoint
讀取存檔時顯示目錄名
-f, --file [hostname:]f
指定存檔或裝置 (預設為 /dev/rmt0)
--force-local
強制使用本地存檔,即使存在轉殖
-f, --info-script f --new-volume-script f
在每個磁碟結尾使用指令碼 f (隱含 -m)
-g, --incremental
建立老 gnu 格式的備份
-g, --listed-incremental f
建立新 gnu 格式的備份
-h, --dereference
不轉儲動態鏈結,轉儲動態鏈結指向的檔案。
-i, --ignore-zeros
忽略存檔中的 0 位元組塊(通常意味著檔案結束)
--ignore-failed-read
在不可讀檔案中作 0 標記後再退出???
-k, --keep-old-files
儲存現有檔案;從存檔中展開時不進行覆蓋
-k, --starting-file f
從存檔檔案 f 開始
-l, --one-file-system
在本地檔案系統中建立存檔
-l, --tape-length n
在寫入 n*1024 個位元組後暫停,等待更換磁碟
-m, --modification-time
當從乙個檔案中恢復檔案時,不使用新的時間標籤
-m, --multi-volume
建立多卷存檔,以便在幾個磁碟中存放
-n, --after-date date, --newer date
僅儲存時間較新的檔案
-o, --old-archive, --portability
以 v7 格式存檔,不用 ansi 格式
-o, --to-stdout
將檔案展開到標準輸出
-p, --same-permissions, --preserve-permissions
展開所有保護資訊
-p, --absolute-paths
不要從檔名中去除 '/'
--preserve
like -p -s
與 -p -s 相似
-r, --record-number
顯示資訊時同時顯示存檔中的記錄數
--remove-files
建立存檔後刪除原始檔
-s, --same-order, --preserve-order
???--same-owner
展開以後使所有檔案屬於同一所有者
-s, --sparse
高效處理
-t, --files-from f
從檔案中得到要展開或要建立的檔名
--null
讀取空結束的檔名,使 -c 失效
--totals
顯示用 --create 引數寫入的總位元組數
-v, --verbose
詳細顯示處理的檔案
-v, --label name
為存檔指定卷標
--version
顯示 tar 程式的版本號
-w, --interactive, --confirmation
每個操作都要求確認
-w, --verify
寫入存檔後進行校驗
--exclude file
不把指定檔案包含在內
-x, --exclude-from file
從指定檔案中讀入不想包含的檔案的列表
-y, --bzip2, --bunzip2
用 bzip2 對存檔壓縮或解壓
-z, --compress, --uncompress
用 compress 對存檔壓縮或解壓
-z, --gzip, --ungzip
用 gzip 對存檔壓縮或解壓
--use-compress-program prog
用 prog 對存檔壓縮或解壓 ( prog 需能接受 -d 引數)
--block-compress
為便於磁碟儲存,按塊記錄存檔
-[0-7][lmh]
指定驅動器和密度[高中低]
--------------------------
打包: tar -cf soft.tar soft
解包: tar -xf soft.tar soft
壓縮目錄
打包壓縮:tar czvf usr.tar.gz /home
解壓縮:tar xzvf usr.tar.gz
壓縮檔案(對於目錄失效)
壓縮:zip good.zip good1 good2
解壓:unzip good.zip
TAR命令引數詳解
filename1 filename2,filenamen directory1 directory2,directoryn 描述 tar 程式用於儲存或展開 tar 存檔檔案。存檔檔案可放在磁碟中 也可以存為普通檔案。tar是需要引數的,可選的引數是a c d r t u x,您在使用tar時必須...
TAR命令引數詳解
摘自 tar是linux環境下最常用的備份工具之一。tar taparchive 原意為操作磁帶檔案,但基於linux的檔案操作機制,同樣也可適用於普通的磁碟檔案。tar可用於建立 還原 檢視 管理檔案,也可方便的追加新檔案到備份檔案中,或僅更新部分的備份檔案,以及解壓 刪除指定的檔案。熟悉其常用引...
TAR命令引數詳解
filename1 filename2,filenamen directory1 directory2,directoryn 描述tar 程式用於儲存或展開 tar 存檔檔案。存檔檔案可放在磁碟中 也可以存為普通檔案。tar是需要引數的,可選的引數是a c d r t u x,您在使用tar時必須首...