I have here 5GB zip file but I have no idea how to unzip that.
I tried:
7z x file.zip
Returns: Error: Can not open file as archive
jar xvf file.zip
Returns: jar: error opening file.zip for reading: Value too large for defined data type
unzip file.zip
Returns:
End-of-central-directory signature not found. Either this file is not
a zipfile, or it constitutes one disk of a multi-part archive. In the
latter case the central directory and zipfile comment will be found on
the last disk(s) of this archive.
note: file.zip may be a plain executable, not an archive
unzip: cannot find zipfile directory in one of file.zip or
file.zip.zip, and cannot find file.zip.ZIP, period.
The file does seem to be a zip archive:
$ file file.zip
file.zip: Zip archive data, at least v1.0 to extract
Any idea?
Thanks.
unzip file.zip
it looks like your zip file may be corrupted. Can you download it again and do a checksum to see if the file is ok? – LnxSlck Jul 20 '14 at 12:13file file.zip
say? – steeldriver Jul 20 '14 at 12:15file.zip: Zip archive data, at least v1.0 to extract
– pavel Jul 20 '14 at 12:19unzip
works. First time, the file was probably corrupt, now everything is okay. – pavel Jul 20 '14 at 15:59