bzip2 on AIX 5.3


 
Thread Tools Search this Thread
Operating Systems AIX bzip2 on AIX 5.3
# 1  
Old 08-14-2006
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 problem is happening only on AIX. Does some one have an ideia about solution for this problem ? Thanks.
Login or Register to Ask a Question

Previous Thread | Next Thread

3 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
Login or Register to Ask a Question
libbz2(3)						     Library Functions Manual							 libbz2(3)

NAME
libbz2 - library for block-sorting data compression SYNOPSIS
cc [ flag ...] file..." -lbz2 [ library ... ] #include <stdio.h> #include <bzlib.h> DESCRIPTION
Interfaces in this library provide the ability to compress (and decompress) files using the Burrows-Wheeler blocksorting text compression algorithm, and Huffman coding. It is provided along with the bzip2(1) utility. See bzip2(1) for more information. The source distribution of bzip2 contains a description of how to use this library in HTML form. For additional information on shared object interfaces, see intro(3). INTERFACES
BZ2_bzCompressInit BZ2_bzCompress BZ2_bzCompressEnd BZ2_bzDecompressInit BZ2_bzDecompress BZ2_bzDecompressEnd BZ2_bzReadOpen BZ2_bzReadClose BZ2_bzReadGetUnused BZ2_bzRead BZ2_bzWriteOpen BZ2_bzWrite BZ2_bzWriteClose BZ2_bzBuffToBuffCompress BZ2_bzBuffToBuffDecompress BZ2_bzlibVersion BZ2_bzopen BZ2_bzdopen BZ2_bzread BZ2_bzwrite BZ2_bzflush BZ2_bzclose FILES
/usr/lib/libbz2.so.1 shared object /usr/lib/sparcv9/libbz2.so.1 64-bit shared object SEE ALSO
bzip2(1), intro(3) AUTHOR
Julian Seward, jseward@acm.org. http://sourceware.cygnus.com/bzip2 http://www.muraroa.demon.co.uk The ideas embodied in bzip2 are due to (at least) the fol- lowing people: Michael Burrows and David Wheeler (for the block sorting transformation), David Wheeler (again, for the Huffman coder), Peter Fenwick (for the structured cod- ing model in the original bzip, and many refinements), and Alistair Moffat, Radford Neal and Ian Witten (for the arithmetic coder in the original bzip). I am much indebted for their help, support and advice. See the man- ual in the source distribution for pointers to sources of documentation. Christian von Roques encouraged me to look for faster sorting algorithms, so as to speed up compres- sion. Bela Lubkin encouraged me to improve the worst-case compression performance. Many people sent patches, helped with portability problems, lent machines, gave advice and were generally helpful. ATTRIBUTES
See attributes(5) for descriptions of the following attributes: +--------------------+--------------------+ | ATTRIBUTE TYPE | ATTRIBUTE VALUE | +--------------------+--------------------+ |Availability | SUNWbzip SUNWbzipx | +--------------------+--------------------+ |Interface Stability | External | +--------------------+--------------------+ NOTES
Source for libbz is available in the SUNWbzipS package. Bare manual page by mike_s@Sun.COM. 8 Oct 1999 libbz2(3)