How do I extract a gz file?
Use gunzip command as follows:
# gunzip filename.gz
How do I extract a tar.gz file?
# tar xvzf file.tar.gz
Linux, Windows, Software Tips, Articles and Hacks
How do I extract a gz file?
Use gunzip command as follows:
# gunzip filename.gz
How do I extract a tar.gz file?
# tar xvzf file.tar.gz
Make an archive of a plesk httpdocs directory
tar -cvzf domain.com_backup_7.17.14.tar.gz /var/www/vhosts/domain.com/httpdocs/
Result
-rw-r--r-- 1 root root 14482441 Jul 17 14:09 domain.com_backup_7.17.14.tar.gz
Extract the same file
tar -xf domain.com_backup_7.17.14.tar.gz