Linux

How to untar a tar file

【Issue】
How to untar a tar file

 

【Solution】
tar xvzf tar_file_name.tar

 

【Note】
x: Extract files
f:  If you want to give it a file name to work with
v: verbose – list all the files in archive
z:  Uncompress tar.gz files

In order to untar a tar file, x and f options are required.