Skip to main content

Questions tagged [bzip2]

3 votes
1 answer
323 views

In order to test extraction of large files by a batch job, I wanted to create several relatively small archives. As I was creating increasingly large archives, at some point they became partial of the ...
Satoro Inikei's user avatar
1 vote
1 answer
207 views

I would like to use GNU Parallel to process a huge .gz or .bz2 file. I know I can do: bzcat huge.bz2 | parallel --pipe ... But it would be nice if there was a way similar to --pipe-part that can read ...
Ole Tange's user avatar
  • 37.6k
0 votes
1 answer
102 views

If we create a tar ball file by giving the following command tar -cvf Docs.tar $HOME/Documents/* then post creation of the tar ball is it possible to use gzip or bzip2 or xz or some other compression ...
KDM's user avatar
  • 128
1 vote
1 answer
2k views

I am trying to uncompresss a bzip2 file (~55 GB) with the command tar -jxvf file.tar.bz2 However I found that the decompression process gets stuck at a certain file and, after waiting a long duration, ...
Raghvender's user avatar
1 vote
0 answers
755 views

I have a question, just a little thing couch my eyes it's about compression with gzip and bzip2: If I understood correctly - bzip2 requires more processing power but compresses files smaller and more ...
Karuch's user avatar
  • 11
0 votes
2 answers
442 views

#!/bin/bash # check if the user put a file name if [ $# -gt 0 ]; then # check if the file is exist in the current directory if [ -f "$1" ]; then # check if the file is ...
alan's user avatar
  • 1
2 votes
1 answer
3k views

I tried to build PHP v8.0.0 from its source but after running ./configure it says: ... checking for BZip2... not found configure: error: please reinstall BZip2 distribution But I have bzip2 installed ...
Ar Rakin's user avatar
  • 199
0 votes
0 answers
271 views

Does it make sense to compress a tarball (or any kind of file, really), e.g., using gzip or bzip2, while at the same time creating redundancy files for it, e.g., a par2 file? The context is that I am ...
pygumby's user avatar
  • 111
1 vote
2 answers
2k views

If there any way to see if there is a problem with the .tar.bz2 file? As you can see, I can get a list of files, but neither xjvf nor xzvf works in this case. $ tar tf pytorch.20210702.tar.bz2 | head ...
mahmood's user avatar
  • 1,271
2 votes
1 answer
10k views

I know thats a pretty dumb question but I didn't found this precise question on internet I try to tar -cvjf all the contents of a directory (/*) and directly redirect that to a file (> file) but ...
wxi's user avatar
  • 189
9 votes
1 answer
2k views

I am looking for a compression tool with an arbitrarily large dictionary (and "block size"). Let me explain by way of examples. First let us create 32MB random data and then concatenate it to itself ...
Simd's user avatar
  • 381
7 votes
2 answers
7k views

I have a big bzip2 compressed file and I need to check it's decompressed size without actually decompressing it (similar to gzip -l file.gz or xz -l file.xz). How can this be done using bzip2?
manifestor's user avatar
  • 2,563
2 votes
3 answers
1k views

I am supposed to find whether a file is compressed using .bz2 or .tar.bz2(without using extension of file) and and decompress it accordingly. I used the file command but it is giving same result for ...
charan priyatham's user avatar
9 votes
1 answer
1k views

I am trying to determine if there are any potential issues using bzip2 to compress files that need to be 100% reproducible. Specifically: can metadata (name / inode, lastmod date, etc) or anything ...
Jonathan Cross's user avatar
0 votes
2 answers
288 views

I am looking to create a script - a linux or a python scrip so that it can create the following things for me as well as Verify the files for me which are copied from a folder. I Have two folders: ...
mywayz's user avatar
  • 61

15 30 50 per page