How to untar a tar file or gzip-bz2 tar file

from: http://how-to.wikia.com/wiki/How_to_untar_a_tar_file_or_gzip-bz2_tar_file

Tar file can come compressed or uncompressed. Generally that are compressed using gzip or bzip2. The program, tar, will uncompress both types and extract the files from archive.

1)Type at the command prompt

tar xvzf file-1.0.tar.gz - to uncompress a gzip tar file (.tgz or .tar.gz)

tar xvjf file-1.0.tar.bz2 - to uncompress a bzip2 tar file (.tbz or .tar.bz2)
tar xvf file-1.0.tar - to uncompressed tar file (.tar)
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
f = from/to file ... (what is next after the f is the archive file)


2) The files will be extracted in the current folder (most of the times in a folder with the name 'file-1.0').

發佈了81 篇原創文章 · 獲贊 1 · 訪問量 6萬+
發表評論
所有評論
還沒有人評論,想成為第一個評論的人麼? 請在上方評論欄輸入並且點擊發布.
相關文章