Linux – How to extract a tar.gz file
In this tutorial, we will show you how to extract a tar.gz file : tar vxf filename.tar.gz Example For example, apache-ant-1.9.4-bin.tar.gz in your ~/Download folder. $ cd ~ $ pwd /Users/mkyong # Optionally, create a new folder for the archived file. $ mkdir tools $ cd tools $ pwd /Users/mkyong/tools # Copy archived file to …