*nix trick: Decompressing .tar.gz files
I got a .tar.gz file. How do I decompress it?
Although it is not always true, depending on your system, the command is usually: tar xzvf thefilename.tar.gz
If it's not working, you can do it in two steps:
gunzip thefilename.tar.gz
tar xvf thefilename.tar
