bzip2 1.0.5 (Default branch)


 
Thread Tools Search this Thread
Special Forums News, Links, Events and Announcements Software Releases - RSS News bzip2 1.0.5 (Default branch)
# 1  
Old 03-21-2008
bzip2 1.0.5 (Default branch)

bzip2 is a portable, lossless data compressor based on the Burrows-Wheeler transform. It achieves good compression and runs on practically every (32/64-bit) platform in the known universe. The compression engine is also available as a library (libbz2), should you desire a programmatic interface. License: BSD License (original) Changes:
This release removes a potential security vulnerability which caused bzip2 to fail one of the test cases provided and reported in CERT-FI 20469. Upgrading is strongly recommended.Image

More...
Login or Register to Ask a Question

Previous Thread | Next Thread

4 More Discussions You Might Find Interesting

1. Shell Programming and Scripting

zip files using bzip2

Hi all, Say I've got a file /tmp/tempfile.txt which contains a list of files with full path. Now I would wish to take all filenames in that tempfile as arguments and zip them in a single archived file. So how could I archive this? Seems like I need to use the xargs command? Thanks (5 Replies)
Discussion started by: isaacniu
5 Replies

2. Solaris

doubt regarding bzip2

Hi, I tried to upload the crash dump files unix.0 and vmcore.0 ..bzip2 is working fine for unix.0 but for vmcore.0 its not working and it shows the below error. Is there any size limit or file type for bzip2. current vmcore.0 file size -- 2326372352 kb # file vmcore.0 vmcore.0: ... (1 Reply)
Discussion started by: rogerben
1 Replies

3. UNIX for Dummies Questions & Answers

bzip2

I have a DVD that has a 2gigabit bzip2 file. How do I unzip it. Please excuse my ignorance I am to old and stupid to be trying this. Help would sure be appreciated. Love, jerryandjerry could you email me at jerrylowery2@msn.com (1 Reply)
Discussion started by: jerryandjerry
1 Replies

4. AIX

bzip2 on AIX 5.3

Hi. I have the bzip2 version 1.0.2 installed on AIX 5.3 (RPM package). The documentation (www.bzip.org) says that this version can compress files >2Gb, but is not working. On AIX, bzip2 is working well just for files less than 2Gb. I have the bzip2 (same version) installed on Linux box. The... (0 Replies)
Discussion started by: Livio
0 Replies
Login or Register to Ask a Question
PerlIO::via::Bzip2(3)					User Contributed Perl Documentation				     PerlIO::via::Bzip2(3)

NAME
PerlIO::via::Bzip2 - PerlIO layer for Bzip2 (de)compression SYNOPSIS
use PerlIO::via::Bzip2; # or use PerlIO::via::Bzip2 level => 9; # Maximum compression # Read a bzip2 compressed file from disk. open(my $fh, "<:via(Bzip2)", "compressed_file"); my $uncompressed_data = <$fh>; # Compress data on-the-fly to a bzip2 compressed file on disk. open(my $fh, ">:via(Bzip2)", "compressed_file"); print {$fh} $uncompressed_data; # Set compression level PerlIO::via::Bzip2->level(5); open(my $fh, ">:via(Bzip2)", "compressed_file"); print {$fh} $uncompressed_data; DESCRIPTION
This module implements a PerlIO layer which will let you handle bzip2 compressed files transparently. Class Methods level([$level]) level sets or returns the compression level of the bzip2 library. It ranges from 1 (least compression, most efficient memory use) to 9 (best compression, most memory usage). This parameter can also be set during using library import, using "use PerlIO::via::Bzip2 level => $level". BUGS
Using binmode() on an opened file for compression will pop (remove) the layer. PREREQUISITES
This module requires Compress::Bzip2 version 1.03. SEE ALSO
PerlIO::via, Compress::Bzip2 AUTHOR
Arjen Laarhoven, <arjen@cpan.org> COPYRIGHT AND LICENSE
Copyright (C) 2005 by Arjen Laarhoven This library is free software; you can redistribute it and/or modify it under the same terms as Perl itself. perl v5.18.2 2005-03-04 PerlIO::via::Bzip2(3)