I have this:
-rw-r--r-- 1 user user 36166999908 Jan 29 2022 tmp.archive.part1.zip
-rw-r--r-- 1 user user 5579574562 Jan 29 2022 tmp.archive.part2.zip
-rw-r--r-- 1 user user 5097536636 Jan 29 2022 tmp.archive.part3.zip
-rw-r--r-- 1 user user 10612382236 Dec 29 02:19 tmp.archive.part4.zip
G M k
so these ZIP files are 36 GB, 5, 5, and 10 GB in size, all of them would be past the 2^32 4GB maximum that I read at one place. They say "zip64" allows 2^64 size, but I don't know what I have, zip -h says:
Copyright (c) 1990-2008 Info-ZIP - Type 'zip "-L"' for software license.
Zip 3.0 (July 5th 2008). Usage: ...
and file tells me:
file tmp.archive.part1.zip
tmp.archive.part1.zip: Zip archive data, at least v1.0 to extract
so how can that be?
I do notice that zipmerge completely fails to operate with these files.
My problem is, I need to combine these zip files into one (if possible) and do so without actually extracting them (no space and file count quota on the system this is on). I tried a zip2tar python script which someone posted here to another question but that also fails. They don't like the file, say it's no zip file, or just crash with core dump.
If these zip files were created with the zip 3.0 which I showed, then is there perhaps a better zipmerge or something which will not choke on the size?