-
Step 1
Type "unzip zipfile.zip" where zipfile is the name of the file that you are uncompressing. The "unzip" command allows the user to unzip compressed files with the .zip extension.
-
Step 2
Type "tar xvf tarfile.tar" where tarfile is the name of the file that you are uncompressing. The "tar xvf" command allows the user to uncompress compressed files with the .tar extension.
-
Step 3
Type "gunzip zipfile.gz" where zipfile is the name of the file that you are uncompressing. The "gunzip" command allows the user to unzip compressed files with the .gz extension. Gunzip converts the file into a tar file without the .tar extension. So, now you must follow Step 2 and type "tar xvf zipfile." Zipfile in this case has no extension.















