How do I convert a .tar backup to .tar.gz?

wellammm

New member
Joined
Nov 22, 2009
Messages
1
Reaction score
0
Points
1
I have a backup of my site as a .tar
However, I would like to compress it to a .tar.gz
How do I go about doing this?
Any help is greatly appreciated!
 
gzip filename.tar


That will create filename.tar.gz

P.S.: You don't need gunzip to uncompress a gzipped file. You can use: gzip -d filename.tar.gz
 
Be sure you have GNUzip installed, then gzip the tar file.
 
Back
Top