bzip2 is a Unix command used for compression and decompression of files. The main advantage of bzip2 is that it has a high compression ratio with reasonable speed.

learn more… | top users | synonyms

0
votes
2answers
49 views

Capturing BZIP2 Termination within Perl

Here is what I have so far: #!/usr/bin/perl use strict; use warnings; use IO::Compress::Bzip2 qw(bzip2 $Bzip2Error); use File::Find; use File::Basename; my $directory = ...
1
vote
1answer
36 views

Importing bz2 compressed binary file as numpy array

I have a bz2 compressed binary (big endian) file containing an array of data. Uncompressing it with external tools and then reading the file in to Numpy works: import numpy as np dim = 3 rows = 1000 ...
1
vote
1answer
83 views

What File Format Does PharData::extractTo Extract Files As?

I'm using the extractTo method of the PHP PharData class to examine the contents of a phar file and running into some strage results. I've reached the limits of my byte level detective work and was ...
1
vote
0answers
44 views

Using SevenZipSharp to extract bzip2 file add a needless tar extension to file, and can't get right archive informations?

Using following code to extracting a bzip2 file to a specified directory: string[] archive_files = null; using (SevenZip.SevenZipExtractor extrator = new SevenZip.SevenZipExtractor(source_file)); { ...
1
vote
0answers
83 views

How to manually pass source of bzip2 install for Python install?

I've been through several StackOverflow questions about Python & bzip2. These have been very helpful in getting me to the state I'm clearly at now. Here's what I've done so far and the problem I'm ...
-1
votes
1answer
48 views

Do we need to specify compression level when extracting a compressed tar file? [closed]

From my tests so far on OSX 10.8 and CentOS 5.5, it looks like tar automatically deduces the compression type of an archive, i.e., I could do tar -xf <compressed archive> instead of doing tar ...
0
votes
2answers
27 views

How to get the internal position while reading bzip2 file

I've got a script to decompress and parse data contained in a bunch of very large bzip2 compressed files. Since it can take a while I'd like to have some way to monitor the progress. I know I can get ...
3
votes
1answer
65 views

Handle gzipped or bzip2ed downloads without keeping compressed data

I'd like to download a compressed file (either in gzip or bzip2), decompress it and analyze its contents (it's a CSV-like file with lots of data, I calculate sums, averages and such for certain ...
2
votes
1answer
45 views

Try opening a file as an archive, otherwise read as a regular file

I am trying to process a list of files, where each may be a regular text file OR a bz2 archive. How can I use try-except blocks most efficiently to attempt to open each file in the appropriate ...
0
votes
1answer
244 views

Best splittable compression for Hadoop input = bz2?

We've realized a bit too late that archiving our files in GZip format for Hadoop processing isn't such a great idea. GZip isn't splittable, and for reference, here are the problems which I won't ...
1
vote
1answer
57 views

What's the difference between two concatentated bz2 files and one bz2 file made from two concatenated files?

If I have two text files, one and two, what's the difference between: bz2 one two -c >out.bz2 ...and... cat one two | bzip2 -c >out.bz2 ? Specifically, I'm generating bz2 files using ...
0
votes
0answers
96 views

.bz2 pipe extract with Node.js?

I want to extract .tar.bz2 like the following with tar.gz with node.js: request.get("localhost/file.tar.gz") .pipe(zlib.createGunzip()) .pipe(tar.Extract({path: "./test"})) .on("error", ...
1
vote
1answer
86 views

install error of CASAVA on Ubuntu 12.04LTS

I am trying to install CASAVA Bcl2Fastq 1.8.3 (developed for CentOS) on Ubuntu 12.04 LTS. However, I got an error message "No support for gzip compression" and the install failed. Luckily, I found a ...
0
votes
2answers
156 views

How to increase map tasks for MapReduce with bzip2 inputformat

I developed mr, that correctly works with a text file running multiple map tasks, but I need to run job either on archives. My choice is bzip2 archive. With such archives my job works with only one ...
0
votes
3answers
65 views

Way to delete the already decompressed portion of a file as it is being decompressed?

I'm wondering if there is a way to delete the already decompressed portion of a file as it is being decompressed. I've got an external backup of the compressed file so I'm not worried about loosing ...
2
votes
2answers
149 views

Parallel BZip2 Compression

i'm using Apache Commons Compress for Java to compress multiple log files to a single tar.bz2 archive. However, it takes really long (> 12 hours) to compress, because i compress around 20GB of files ...
0
votes
2answers
314 views

BZip2 file read in Hadoop

I heard we can use multiple mappers to read different parts of one bzip2 file in parallel in Hadoop, to increase performance. But I cannot find related samples after search. Appreciate if anyone could ...
1
vote
1answer
142 views

Decompressing .bz2 stream to file in C#

I'm having real trouble trying to use the .bz2 stuff from the SharpZipLib library and I've not been able to find any help else where. Any help or advice would be much appreciated and if anyone can ...
13
votes
4answers
424 views

How to protect myself from a gzip or bzip2 bomb?

This is related to the question about zip bombs, but having gzip or bzip2 compression in mind, e.g. a web service accepting .tar.gz files. Python provides a handy tarfile module that is convenient to ...
0
votes
0answers
160 views

How to read a base 64 encoded bzip2 byte array in Java?

I have the following issue: - I receive string input in an XML string - the input is generated in C# as follows: a.) compress a string variable using bzip2 (sharpziplib library) and then b.) base 64 ...
2
votes
1answer
111 views

Can't open bz2-compressed (with python) file with normal archive manager

I've written some code to bz2-compress a file with the BZ2 Compressor Object: def compressFile(file_name, new_name): comp = bz2.BZ2Compressor() comFile = open(new_name, "wb") ...
1
vote
2answers
495 views

How to use awk for a compressed file

How can I change the following command for a compressed file? awk 'FNR==NR { array[$1,$2]=$8; next } ($1,$2) in array { print $0 ";" array[$1,$2] }' input1.vcf input2.vcf The command working fine ...
7
votes
1answer
371 views

Replicate Java Decryption code in golang

I'm struggeling with the replication of a piece of Java code in golang for the last days and am stuck now. This is the working Java code: final Key k = new SecretKeySpec(keyString.getBytes(), "AES"); ...
1
vote
1answer
106 views

Using bzip2 low-level routines to compress chunks of data

The Overview I am using the low-level calls in the libbzip2 library: BZ2_bzCompressInit(), BZ2_bzCompress() and BZ2_bzCompressEnd() to compress chunks of data to standard output. I am migrating ...
1
vote
2answers
63 views

How to compress multiple file with CBZip2OutputStream

I use CBZip2OutputStream for create a compressed bzip file. It works. But I want to compress several files in one bzip file but without using tar archive. If I have file1, file2, file3, I want them ...
0
votes
0answers
91 views

Comparing bz2 files in unix

I manage a number of databases on unix servers, and do daily backups of these databases using mysqldump. Since (some of) these databases are very large (20+Gb), I usually zip the backup .sql files ...
1
vote
2answers
994 views

missing python bz2 module

I have installed at my home directory. [spatel@~ dev1]$ /home/spatel/python-2.7.3/bin/python -V Python 2.7.3 I am trying to run one script which required python 2.7.x version, and i am getting ...
1
vote
1answer
190 views

Reading memory mapped bzip2 compressed file

So I'm playing with the Wikipedia dump file. It's an XML file that has been bzipped. I can write all the files to directories, but then when I want to do analysis, I have to reread all the files on ...
0
votes
0answers
134 views

Is Python bz2file slower than bz2?

I have a Python script that parses BZ2 compressed logfiles using regex. We were getting pretty poor performance, which I initially thought was my regex - however, when I looked further, it seems ...
0
votes
1answer
273 views

How to write binary data to a compressed file

I have some financial data that I am processing in C++. I am storing it in a simple binary format because it requires fewer resources and is fast, however I would like to add compression to the file. ...
1
vote
1answer
242 views

How to rename a file inside a tar.bz2 archive?

I want to know if there is better way to rename a file from inside a .tar.bz2 file, without unpacking it and repacking the entire archive.
1
vote
1answer
515 views

installing bzip2 for php

I have a server with CentOs and PHP 5.3.16 and I want to enable bzip2 to use with php.. I downloaded and installed bzip2 from its original site in /usr/local/bin and edited the configuration.php5 file ...
0
votes
0answers
115 views

bzip2: write ok, flush ok, read fail

bzip2 1.0.6 Task: compress network packets. Problem: bzip2 "BZ_FLUSH" is not working, only "BZ_FINISH" is working, but I need flush current data and keep stream for each connection, not separate ...
5
votes
1answer
2k views

Utilizing multi core for tar+gzip/bzip compression/decompression

I normally compress using tar zcvf and decompress using tar zxvf (using gzip due to habit). I've recently gotten a quad core CPU with hyperthreading, so I have 8 logical cores, and I notice that ...
1
vote
1answer
69 views

What kinds of things is bzip2 good at compressing? [closed]

Reading this Hacker News post somehow the poster knew that bzip2 was the right compression to use for a .csv of Zip code info. My question is, how did rbanffy know? Is there some intuitive way, ...
2
votes
1answer
1k views

Error installing Nodejs on CentOS 5 server - no module bz2

I'm trying to get NodeJS installed on my CentOS 5 server I got Python 2.6 installed, and I got ./configure to work, but when I run the make command I get this result [root@catch24dev node-v0.8.6]# ...
2
votes
1answer
561 views

bz2 issue when installing Python 2.6.6 on Cent OS 5.8

I installed bzip2, bzip2-devel & bzip2-libs using the following command: yum install bzip2 bzip2-devel bzip2-libs Installation proceeded with to warning or error. After this step, I installed ...
0
votes
1answer
91 views

Can BZ2_bzBuffToBuffCompress() be called repeatedly?

I have a large amount of "input" data that I want to compress to multiple bzip2 streams, without writing data to multiple intermediate files. Can I put a chunk of input data into a buffer, use ...
0
votes
1answer
155 views

Python BZ2 Module Sequential decompressor: How do I find out when the complete file has been successfully decompressed?

I am using the bz2.BZ2Decompressor class to sequentially decompress a stream of bz2 compressed data. It is possible that my stream contains truncated compressed data. I need to be able to ...
0
votes
0answers
118 views

decompressing using bzlib in c++

I'm trying to decompress a file using bzlib library. I have heavily borrowed from the code given here. The problem is that the program doesn't get compiled. I follow the answer and supply -lbz2 as ...
1
vote
1answer
239 views

bzip2-ruby Windows Install

I'm attempted to install the bzip2-ruby gem on Windows 7 x64. Now I don't know if this gem even works on 64-bit Windows. I did install bzip2 which got installed to C:\Program Files (x86)\GnuWin32. ...
0
votes
1answer
37 views

bzip2 version used in python 3.2

What is the version of bzip2 in python 3.2? bzip2 is currently at 1.0.6. How can I find the version used in pyhton 3.2?
0
votes
1answer
113 views

Compress NSString in Cocoa and uncompress in PHP

I would like to send large NSStrings from Cocoa to PHP. Can I use the bzlib library to compress these strings on the fly (therefore to compress in memory, not from disk), and then to be able to ...
2
votes
3answers
826 views

Splittable Bz2 input in Hadoop 1.0.0

I have a cluster that uses Hadoop 1.0.0 and I would like to run a MR job that processes huge bz2 files. In version 0.21.0 the Bz2 codec supported splitting of input files, however I could not find ...
1
vote
3answers
1k views

BZ2 compression in C++ with bzlib.h

I currently need some help learning how to use bzlib.h header. I was wondering if anyone would be as so kind to help me figure out a compressToBZ2() function in C++ without using any Boost libraries? ...
2
votes
1answer
200 views

How can I read from a corrupted tar.bz2 file in Python?

I have a program which saves its output to a tar.bz2 file as it works. I have a python script which processes that data. I'd like to be able to work with the output if the first program is ...
0
votes
1answer
329 views

Failed to install PyTables

I'm trying to install PyTables using either easy_install or pip but both attempts end with the same error: error: Command "gcc -pthread -fno-strict-aliasing -DNDEBUG -g -fwrapv -O2 -Wall ...
0
votes
1answer
784 views

bz2 in javascript

Are there any javascript libraries that can take a byte array and bz2 decompress it into another byte array? I know that many browsers have this capability for an entire stream, but this array is at ...
1
vote
2answers
544 views

How to read output from bzcat instead of specifying a filename

I need to use 'last' to search through a list of users who logged into a system, i.e. last -f /var/log/wtmp <username> Considering the number of bzipped archive files in that directory, and ...
1
vote
2answers
216 views

Read log file from bz2 file in objective-c

I would like to read the contents of a logfile that has been rotated to a bz2 file. How can I do this while using as little memory as possible?

1 2