Questions tagged [bzip]

Anything related to bzip file compressor (legacy). DO NOT use to mark questions related to the newer bzip2 compressor, use bzip2 tag instead.

Anything related to bzip file compressor (legacy). DO NOT use to mark questions related to the newer bzip2 compressor, use bzip2 tag instead.

See the Wikipedia page on bzip2.

27 questions
1
vote
1 answer

building freetype on centos 5.8 - 64 bit

I am trying to build FreeType for GD module of PHP. Well, I was able to built it successfully for 32 bit centos but i am getting an error on x86_64. Freetype : LDFLAGS="-L/usr/local/lib" CPPFLAGS="-I/usr/local/include" ./configure…
Jigar
  • 3,256
  • 1
  • 30
  • 51
0
votes
1 answer

I have a syntax error in my R function code

I have a syntax error in my R function code, and I can't find it. Before I made it into a function it worked fine. I am new to R, and this is the first meaningful function I made (after making smaller test functions). #model bzip { #Likelihood: …
0
votes
1 answer

Cannot change the compression level for BZIP2 with Tar

I need to change the compression level for BZIP2 compression with tar. I found that we can set the compression level and run the tar command to compress. I tried different compression levels using the following command, but it seems like…
Malintha
  • 4,512
  • 9
  • 48
  • 82
0
votes
1 answer

How do I uncompress .bz file contents and convert it to plain enlish

I have .bz file contents in s3 bucket. Using S3Object , I'm able to read the file : S3Object object = s3.getObject(bucket, path); S3ObjectInputStream inputStream = object.getObjectContent(); Now I want to uncompress this content. Tried, converting…
0
votes
0 answers

How to extract Bzip2 file in python

I am writing program which fetch extension of filename from string than download it and extract it, I am able to do it with Tar.gz and zip type of compression but while extracting Bz2 type of file i am able to read file and transfer data to new file…
aditya
  • 5
  • 2
0
votes
1 answer

How to decompress BZIP (not BZIP2) with Apache Commons

I have been working on a task to decompress from different types of file format such as "zip,tar,tbz,tgz". I am able to do for all except tbz because apache common compress library provides BZIP2 compressors. But I need to decompress a old BZIP not…
0
votes
1 answer

Gzip and Bzip uncompress with PHP

How to identify, with PHP, if a compress file has more than one file compressed? I got it with ZIP compress, but I didn't with Gzip and Bzip. Thanks!
Lenard
  • 3
  • 1
0
votes
1 answer

process bz2 file and process using awk

I have a file called "text.bz2" which contains a number of records which i want to process. I have a script which successfully processes all the data in a standard text file and outputs the results to a different "results.txt" file, but the command…
villaman
  • 65
  • 3
0
votes
2 answers

Problems with BZIP-OutputStream

first some code: ByteArrayOutputStream bos = new ByteArrayOutputStream(); CBZip2OutputStream zos = new CBZip2OutputStream(bos); provider.sendXMLFilelist(zos); zos.flush(); bos.flush(); length = bos.size(); "provider" send (lets say) 200 bytes to…
Bigbohne
  • 1,356
  • 3
  • 12
  • 24
0
votes
1 answer

unzipping bzip file using bash

I am trying to unzip bzip file using bash this way tmp1 = #(bzcat all.tbz) echo tmp1 | tar x But this fails with tar: Unrecognized archive format tar: Error exit delayed from previous errors. But if I do this bzcat all.tbz | tar x and that…
Abdul Rahman
  • 1,294
  • 22
  • 41
0
votes
5 answers

Encrypt the file for security

Actually I have a file . I am working in linux environment. I need to encrypt that file for secure purpose with giving the some password. The operation could be like zip , tar any compression. When I extract the file It should ask me password ,…
Pavunkumar
  • 5,147
  • 14
  • 43
  • 69
-1
votes
1 answer

Decompressing large files using multiple computers

We have to deal with extracting gzip/bzip files over the internet, sometimes they are way over multiple gigabytes (eg. 15gb wiki dump). Is there a way that those can be extracted by multiple computers instead of by one? Perhaps reading the header…
Devrim
  • 2,826
  • 5
  • 25
  • 31
1
2