How To Wiki
No edit summary
Tag: Visual edit
No edit summary
Tag: Visual edit
Line 6: Line 6:
 
#:'''tar xvjf file.tar.bz2''' - to uncompress a bzip2 tar file (.tbz or .tar.bz2) to extract the contents.
 
#:'''tar xvjf file.tar.bz2''' - to uncompress a bzip2 tar file (.tbz or .tar.bz2) to extract the contents.
 
#:'''tar xvf file.tar''' - to uncompressed tar file (.tar)
 
#:'''tar xvf file.tar''' - to uncompressed tar file (.tar)
#:'''tar xvC /var/tmp -f file-1.0.tar''' - to uncompress tar file (.tar) to another directory
+
#:'''tar xvC /var/tmp -f file.tar''' - to uncompress tar file (.tar) to another directory
 
#* x = eXtract, this indicated an extraction c = create to create )
 
#* x = eXtract, this indicated an extraction c = create to create )
 
#* v = verbose (optional) the files with relative locations will be displayed.
 
#* v = verbose (optional) the files with relative locations will be displayed.

Revision as of 17:19, 30 November 2017

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.

Difficulty Easy
About:Ratings

Steps

  1. Type at the command prompt
    tar xvzf file.tar.gz - tgfo uncompress a gzip tar file (.tgz or .tar.gz)
    tar xvjf file.tar.bz2 - to uncompress a bzip2 tar file (.tbz or .tar.bz2) to extract the contents.
    tar xvf file.tar - to uncompressed tar file (.tar)
    tar xvC /var/tmp -f file.tar - 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
    • f = from/to file ... (what is next after the f is the archive file)
    • 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.
  2. The files will be extracted in the current folder (most of the times in a folder with the name 'file-1.0').

See Also