If you are new to the world of Linux, you probably unzip your tar.gz files first, and then extract them from the tar file... at least, if you are even bothering to use the command prompt at all. It's easy to gunzip or even bunzip2 the files with a simple command-line switch.

To gunzip and untar a file in a single step, use the following—note that the z switch is the important one that tells tar to unzip it.

tar xvfz somefilename.tar.gz

To use bunzip2 to extract your tar.bz2 file in a single step, use the j switch instead.

tar xvfj somefilename.tar.bz2

Ahh, nice and simple, just the way we like it.