Sponsored Content
Special Forums News, Links, Events and Announcements Software Releases - RSS News Long Range ZIP 0.23 (Default branch) Post 302177483 by Linux Bot on Friday 21st of March 2008 08:40:06 AM
Old 03-21-2008
Long Range ZIP 0.23 (Default branch)

LRZIP is a compression program that can achieve very high compression ratios and speed when used with large files. It uses the combined compression algorithms of lzma for maximum compression, lzo for maximum speed, and the long range redundancy reduction of rzip. It is designed to scale with increases with RAM size, improving compression further. A choice of either size or speed optimizations allows for either better compression than even lzma can provide, or better speed than gzip, but with bzip2 sized compression levels. License: GNU General Public License (GPL) Changes:
The LZMA SDK was updated to the latest version, 4.57. Multithreading support for LZMA was added, which nearly doubles speed. A gzip compression option was added. An assembler module for CRC computation was added, but this is dependent on the processor. More enhancements were made to the lzo_compresses function to avoid LZMA errors. File cleanup was done. configure.in was changed to improve compiling. Code cleanup was done. Documentation with benchmarks was improved and expanded. Major bugs were fixed to work on big RAM machines. A major fix was made to prevent copying all data above 4GB uncompressed.Image

More...
 

2 More Discussions You Might Find Interesting

1. Shell Programming and Scripting

List files with Date Range and Zip it

Hi all, I am using the below script which display the files in the folder with the date range we specify. I want to add extra functionality that, The listing files should be zipped using gzip. I tried to add exec gzip at the last line but it is not working. Suggestions please. ... (2 Replies)
Discussion started by: nokiak810
2 Replies

2. UNIX for Beginners Questions & Answers

Arg list too long error while performing tar and zip operation

hi all i am trying to tar and then zip files present dir by using the below command tar -cvf ${abc}/xyz_backup_date_`date +%d%m%y%H%M%S`.tar xyz* when the files are in less number the above command executes perfectly but when there are large number of files i am getting "arg list too... (5 Replies)
Discussion started by: manoj
5 Replies
Dpkg::Compression(3)						   libdpkg-perl 					      Dpkg::Compression(3)

NAME
Dpkg::Compression - simple database of available compression methods DESCRIPTION
This modules provides a few public funcions and a public regex to interact with the set of supported compression methods. EXPORTED VARIABLES
$compression_re_file_ext A regex that matches a file extension of a file compressed with one of the supported compression methods. EXPORTED FUNCTIONS
my @list = compression_get_list() Returns a list of supported compression methods (sorted alphabetically). compression_is_supported($comp) Returns a boolean indicating whether the give compression method is known and supported. compression_get_property($comp, $property) Returns the requested property of the compression method. Returns undef if either the property or the compression method doesn't exist. Valid properties currently include "file_ext" for the file extension, "default_level" for the default compression level, "comp_prog" for the name of the compression program and "decomp_prog" for the name of the decompression program. compression_guess_from_filename($filename) Returns the compression method that is likely used on the indicated filename based on its file extension. my $comp = compression_get_default() Return the default compression method. It's "gzip" unless "compression_set_default" has been used to change it. compression_set_default($comp) Change the default compression method. Errors out if the given compression method is not supported. my $level = compression_get_default_level() Return the default compression level used when compressing data. It's "9" for "gzip" and "bzip2", "6" for "xz" and "lzma", unless "compression_set_default_level" has been used to change it. compression_set_default_level($level) Change the default compression level. Passing undef as the level will reset it to the compressor specific default, otherwise errors out if the level is not valid (see "compression_is_valid_level"). compression_is_valid_level($level) Returns a boolean indicating whether $level is a valid compression level (it must be either a number between 1 and 9 or "fast" or "best") AUTHOR
Raphael Hertzog <hertzog@debian.org>. 1.16.15 2014-06-05 Dpkg::Compression(3)
All times are GMT -4. The time now is 07:41 AM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy