Tag: compress
Zip Command in Linux
April 2, 2009
Command to create a zip file from a given folder. zip -r File.zip Folder/
Archive all files with a given extension
September 16, 2008
Find all files with ‘.log’ extention and make an bzip archive find /var/log -name ‘*.log’ | tar cv –files-from=- |…
Decompress Bzip2 File
September 13, 2008
Decompress a compressed tar archive in bzip2 tar -xvfj archive.tar.bz2tar -xvfj archive.tar.bz2
Create a Bzip2 File
September 11, 2008
create a tarball compressed into bzip2 tar -cvfj archive.tar.bz2 dir
RAR Support In Linux
November 21, 2007
RAR Support in Linux is easy – just install the unrar tool… sudo yum install unrar
Compress PHP Output from .htaccess
October 30, 2007
Compress all PHP output by adding this line to .htaccess file php_value output_handler ob_gzhandler
Recent Comments