

As per man zipsplit: zipsplit - split a zipfile into smaller zipfiles Or if using split: split -b 1024m file file.part would split file into file.partaa, file.partab. If you have the original files, it may be easier to just rar them and work with that. zipsplit (part of Info-ZIP) is available on most nix distributions. One trick you can potentially use is to "rar" the original zip file, that way you can reassemble it on Windows. Transfer these to Windows, then unrar the first one (destination.rar), which will link to the others automatically.
#Zipsplit max size install
On Ubuntu, install the rar package, then: rar a -v32M destination.rar files/to/compress You can also use rar which natively supports creating "split" archives which can then be decompressed by a GUI tool on Windows such as WinZip or WinRar. One working approach is copy /b ZIPCHUNKS* > reassembled-zip.zip.

Is there replacement for cat on Windows may help, but note that the Windows type command will not work as it adds the files names between them when processing more than one file. Since you want to do the reassembling on Windows, you need a substitute for cat. It supports extensions and a max size and even a max line numbers option: -a, -suffix-lengthN generate suffixes of length N (default 2) -additional-suffixSUFFIX append an additional SUFFIX to file names -b, -bytesSIZE put SIZE bytes. There is a generic command in Linux actually called split. Split with 7-Zip Split with Unix command.
#Zipsplit max size how to
Traditionally you'd use cat to glue them back together: cat ZIPCHUNKS* > reassembled-zip.zip How to split a zipfile into smaller zipfiles. Change the 32M parameter to vary the chunk size. This will create a bunch of ZIPCHUNKS* files, in order, and all 32 MB or less in size. Something like this should work: split your-zip.zip -b 32M ZIPCHUNKS On Ubuntu you can use the split command to split your zip file. zipsplit warning: Entry is larger than max split size of: 99978 zipsplit warning: use -n to set split size zipsplit error: Entry too big to split, read, or write (file.
