GZIP ERROR! -- Plesae help! -- Urgent


 
Thread Tools Search this Thread
Operating Systems AIX GZIP ERROR! -- Plesae help! -- Urgent
# 1  
Old 05-01-2008
GZIP ERROR! -- Plesae help! -- Urgent

I have two huge files on AIX Ver 5.0. File size of each file is 6238884375 bytes. There is huge difference in sizes when I zip them by gzip coomand.
File1.gz 586147513
File2.gz 547585695

Any idea why it is so?

Thanks
Sumit
# 2  
Old 05-01-2008
because the data in one of the files are easier to compress than the data in the other file.
When compressing a file the compression algorithm tries to describe as large a quantity of a file as compressed as possible, if this description has to say "next 1209 bytes needs to be 0" as opposed to "next 124324 bytes needs to be 0" the second one will be represented with less space consuming description than the first one.
# 3  
Old 05-05-2008
they can't be the same file then.

before you gzip then what is the output of du -sk and cksum on each file?
Login or Register to Ask a Question

Previous Thread | Next Thread

10 More Discussions You Might Find Interesting

1. Shell Programming and Scripting

sh: gzip: not found ERROR

I am creating a script to run the SysInfo tool under HPUX servers, this is my script! #!/usr/bin/ksh # # Date: February 29th 2011 # #Definicion de variables PATH_TMP=/home/eponcede > HPUX_SysInfo.log for host in `cat $PATH_TMP/servers/host_hp2_test` do echo... (2 Replies)
Discussion started by: eponcedeleonc
2 Replies

2. UNIX for Advanced & Expert Users

gzip vs pipe gzip: produce different file size

Hi All, I have a random test file: test.txt, size: 146 $ ll test.txt $ 146 test.txt Take 1: $ cat test.txt | gzip > test.txt.gz $ ll test.txt.gz $ 124 test.txt.gz Take 2: $ gzip test.txt $ ll test.txt.gz $ 133 test.txt.gz As you can see, gzipping a file and piping into gzip... (1 Reply)
Discussion started by: hanfresco
1 Replies

3. Programming

An error in my c++ program... please help urgent.

The following is a program to convert an infix expression to postfix expression. //Convert an infix expression to postfix expression... #include<iostream> #include<string> #include<cstdlib> using namespace std; char ifx,pfx,stk; int top=-1,n; void push(char ch) { if(top!=n) ... (6 Replies)
Discussion started by: poonam.gaigole
6 Replies

4. Shell Programming and Scripting

integer expected error::please help ...urgent

I have written the following shell script for submitting check to nagios .It was working fine a few hours ago.I don remember what changes i made and its giving integer expression expected error. #!/bin/bash #$PGREP ${SSHD} if ] then echo "ssh down" ... (1 Reply)
Discussion started by: nasir_khan
1 Replies

5. Programming

gzip on pipe error handling

Hi all... I have the following code: FILE *fp = popen(" gzip -dc /somemount/somefile.gz", "r"); while(fgets(buffer, 1024, fp)) { some code.... } "/somemount" is a mount of some network drive. Sometimes error occurs in while loop - I can see the following "Input/Output error"... (4 Replies)
Discussion started by: adm1n
4 Replies

6. Shell Programming and Scripting

gzip a directory (URGENT)

Hi I have one directory as "eAMRLTXFLDS0"...I am supposed to create a eAMRLTXFLDS0.ofcld.gz using gzip... Can u plz help me wth the command.. Thanks in advance.. (4 Replies)
Discussion started by: grajesh_955
4 Replies

7. UNIX for Dummies Questions & Answers

gunzip error - not in gzip format

Hi, I am getting this error gunzip file1.tar.Z gunzip: file1.tar.Z: not in gzip format Any clues? This goes bad only in some recent installations of ids (5 Replies)
Discussion started by: eagercyber
5 Replies

8. Solaris

[need help urgent]error cpu messages

hi sun experts, i have problem with my server sun fire v240, if i run application the server will restarting itself and i got some error messages like this: Mar 21 15:15:03 sun ^Mpanic/thread=2a10094bd40: Mar 21 15:15:04 sun unix: BAD TRAP: type=34 rp=2a10094b660 addr=30005566764... (0 Replies)
Discussion started by: bucci
0 Replies

9. SCO

memfs.fs I/O Error - urgent attention please

Hy guys, During installation of machine (Pentium x86, 64MB RAM), well during booting SCO UnixWARE 7.1.1 diskette 1/2 i get following error (after SCO logo) "memfs.fs: I/0 error or unexpected EOF" Bootstrap Command Processor ... _ Please advise! (2 Replies)
Discussion started by: R@LE
2 Replies

10. Shell Programming and Scripting

An error with gzip

Have an issue with the following snippet of code, in particular the execution of the `gzip -9 ${ARCHIVE_FILE}`. It is failing with a ReturnCode of 1 - Can anyone lead me to a souce that identifies & describes what RC's there are for gzip, as I've not been able to find any. echo '-- TARing up... (1 Reply)
Discussion started by: Cameron
1 Replies
Login or Register to Ask a Question