I am going crazy with a gzip file.
I can decompress the file in Windows using WinRAR but it is impossible on any UNIX operating system.
the file seems to be ok. If I do
file the_name_of_the_file.gz
I get:
the_name_of_the_file.gz: gzip compressed data, from Unix, last modified: Sun Jan 30 14:10:21 2011
But if I do
gunzip -f the_name_of_the_file.gz
I alsways get:
gzip: the_name_of_the_file.gz: unexpected end of file
The same problem happens when I try to extract the file using the GUI tool in Ubuntu or MacOSX,
Any ideas?
filecommand won't check all of the file. It'll just look at a few bytes in the header to figure out that it's agzencoded file. – James C May 4 '11 at 19:00