Extract tar.gz file in Linux
tar.gz is a format of a gzip compressed tar archived file. It is a common format in distributing files in *nix. To extract a tar.gz file, the most basic syntax is as the following; tar xzf filename.tar.gz and to extract tar.bz2 you can use this command: tar -jxvf filename.tar.bz2 The command will extract the file …