How to use the Linux or UNIX command line to decompress gzip files. Method for .gz files Use the following method to decompress gzip files from the command line: Use SSH to connect to your server. Enter one of the following: gunzip file.gz gzip -d file.gz To see the decompressed file, enter:ls -1 Method for Read More
Tag: GZIP
HOW TO ENABLE GZIP COMPRESSION IN APACHE
by: Karal Max The mod_deflate module provides the DEFLATE output filter that allows the output from your server to be compressed before being sent to the client over the network. mod_deflate is the replacement of mod_gzip which was used with an older version of Apache. ENABLE GZIP MODULE IN APACHE By default, Read More