Bunzip2

From OLPC
Revision as of 02:35, 5 January 2008 by Billfitzgerald (talk | contribs) (New page: An overview of how to use bunzip2, '''shamelessly cut and reformatted''' from [http://sathyasays.com/2007/06/13/5-must-know-commands-every-linux-newbie-should-know/ Sathya Says] -- if you ...)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to: navigation, search

An overview of how to use bunzip2, shamelessly cut and reformatted from Sathya Says -- if you find this useful, thank the original author.

tar/bzip2/bunzip2

For extracting archives, this command is useful for extracting to directories other than the home directory, where root privileges are required

Usage:

For GZipped files(.tar.gz extension)

tar xvfz <archive-name>

Eg: If the archive name is some-file.tar.gz, then the command will be

tar xvfz some-file.tar.gz

For Bzipped files (.tar.bz2 extension)

First, unzip the archive using

bunzip2 <archive-name>

Then untar using the command

tar xvf <archive-name> 

Eg: If the archive is some-file.tar.bz2 then first unzip it using

bunzip some-file.tar.bz2

You’ll get the file some-file.tar. Next untar it using

tar xvf some-file.tar