The tag has no wiki summary.

learn more… | top users | synonyms

0
votes
1answer
88 views

How do I process Protocol Buffer files in Hadoop Map/Reduce using compression other than LZO?

I would like to use Hadoop Map/Reduce to process delimited Protocol Buffer files that are compressed using something other than LZO, e.g. xz or gzip. Twitter's elephant-bird library seems to mainly ...
0
votes
1answer
46 views

Cross-Compiling XZ-5.X.X on Windows

I am tring to cross compile xz-5.0.4 on Windows. I have folowed the instruction in the INSTALL-Windows.txt but I receive an error Initializing Automake: checking for a BSD-compatible install... ...
0
votes
1answer
85 views

Unpack .xz file within C code

My question is quite simple. Is there any possible way to unpack packed .xz file in from C code? I would probably call some default linux-integrated program to unpack it for me, but how exactly does ...
0
votes
0answers
55 views

Accessing parts of xz-compressed file

I have a code that takes a file, mmaps it into memory and then reads parts of it. My goal is to make it work with xz-compressed files of this type as well. The file may potentially be quite large and ...
1
vote
2answers
1k views

Importing zipped files in Mysql using command line

Importing zipped files in Mysql usind CMD What is the right syntax to import sql zipped files into mysql using cmd ? I am doing the following xz < backup.sql.gz | mysql -u root test But always ...
1
vote
1answer
613 views

android dlavikvm-heap out ot memory allocation upon XZ compression

I am trying to compress a tar to a tar.xz on API 2.3.3. No matter what I do I get this error: 06-09 20:56:32.230: V/CameraDemo(23418): filesPath -- > /mnt/sdcard/myimages 06-09 20:56:32.336: ...
1
vote
1answer
71 views

Killing a Unix zipping process

I'm using the xz zipping utility on a PBS cluster; I've just realised that the time I've allowed for my zipping jobs won't be long enough, and so would like to restart them (and then, presumably, I'll ...
2
votes
1answer
398 views

How does the ability to compress a stream affect a compression algorithm?

I recently backed up my soon-to-expire university home directory by sending it as a tar stream and compressing it on my end: ssh user@host "tar cf - my_dir/" | bzip2 > uni_backup.tar.bz2. This got ...
0
votes
1answer
157 views

How to convert a XZ compression output to a NSString?

I've successfully set up a small XZ compressor which returns a std::string that contains the compressed output. To process the result I need to "convert" the std::string to a NSString. Unfortunately ...
7
votes
4answers
4k views

Why is *.tar.gz still much more common than *.tar.xz?

Whenever I see some source packages or binaries which are compressed with GZip I wonder if there are still reasons to favor gz over xz (excluding time travel to 2000), the savings of the LZMA ...
3
votes
1answer
1k views

Extract a tar.xz in C/C++

I am writing a program that downloads tar.xz files from a server and extracts them in a certain place. I am struggling to find a away of extracting the tar.xz file in the certain place. I am using Qt ...
1
vote
2answers
1k views

How to get the uncompressed size of an LZMA2 file (.xz / liblzma)

I'm looking for a way to get the uncompressed stream size of an LZMA2 / .xz file compressed with the xz utility. I'm using liblzma from Windows/Linux for this task, so I guess I'm looking for some ...