天天看點

linux 中的 tar 解壓

Type at the command prompt <dl></dl>

<dd></dd>

<b>tar xvzf file-1.0.tar.gz</b> - tgfo uncompress a gzip tar file (.tgz or .tar.gz)

<b>tar xvjf file-1.0.tar.bz2</b> - to uncompress a bzip2 tar file (.tbz or .tar.bz2) to extract the contents.

<b>tar xvf file-1.0.tar</b> - to uncompressed tar file (.tar)

<b>tar xvC /var/tmp -f file-1.0.tar</b> - to uncompress tar file (.tar) to another directory

x = eXtract, this indicated an extraction c = create to create )  提取 v = verbose (optional) the files with relative locations will be displayed.  z = gzip-ped; j = bzip2-zipped   z 對應 gzip類型壓縮包  j對應bzip2類型壓縮包 f = from/to file ... (what is next after the f is the archive file)  f 代表 from哪個壓縮包 C = directory. In c and r mode, this changes the directory before adding the following files. In x mode, changes directoriy after opening the archive but before extracting entries from the archive. C  代表

The files will be extracted in the current folder (most of the times in a folder with the name 'file-1.0').檔案将被解壓到與壓縮包同一目錄中。(很多時候被解壓到 file-1.0檔案夾中) 開始做,堅持做,重複做

繼續閱讀