One minute
How to Zip and Unzip a tar.gz File
If you want to extract a tar archive
tar -xf archive.tar.gz
If you want to compress a directory
tar -czvf archive.tar.gz /path/to/directory
That’s all.
Read other posts
One minute
If you want to extract a tar archive
tar -xf archive.tar.gz
If you want to compress a directory
tar -czvf archive.tar.gz /path/to/directory
That’s all.