Archive: Distributing large (>2GB) files


Distributing large (>2GB) files
I'm trying to work out a way to sensibly distribute a software package containing 3 files each of which is between 2 and 3GB. These files compress to around 50% of their original size.

Obviously they won't fit in the installer itself. I don't want to just use the "Copy Files" solution, as that would entail distributing the files uncompressed and then they wouldn't all fit on a DVD. I can't distribute them as CAB files as CAB files have a 2GB limit. The various zip and self-extracting zip plugins that I have tried (such as ckvse) all seem to have a 2GB limit as well.

The only thing that I have been able to get working is to compress each file to a .tbz2, and then use the "untgz" plugin to decompress these to their final location. The problem with this is that the decompression provides no progress indicator, so it looks like the installer has hung during the 15 minutes it takes to decompress and copy each file.

Does anyone have any other suggestions?


Not in Winamp Technical Support, you are really in the wrong forum.

This board is ONLY for Winamp Tech suppot.


Use a better archiver, 7-zip for example.


No solution?
Using 7-zip instead of bzip2 makes a few percent difference: I'm still left with >2GB in total. In addition, the decompression plugins that I have tried that handle 7-zip all fail if the uncompressed size is >2GB, so increasing the compression ratio doesn't help.

Does anyone have any other suggestions? All I really need is a decompressor that (a) won't choke on >2GB files, and (b) provides a progress bar on decompression.


the 2gb-limit does not only apply to those formats mentioned, but lies in the file-system. what you can do is compress your files in a format that allows splitting up archives. there are MANY postings regarding this matter in this forum and probably in the nsis wiki aswell.


You can use 7-Zip to split up your archives. The should be an option "Split into volume, bytes:" However you will need a decompressor that can handle split 7z files. Also you can consider using WinRAR though its not free. .rar files decompress significantly faster than .7z files regardless of decompresser (however 7-Zip offers more compression).


Thanks for the suggestions, but you've misunderstood.

1) The size limit isn't a filesystem one. FAT32 has a 4GB limit and NTFS allows files up to 2TB. Instead, it's a limit of many of the decompression tools: in particular the various unzip plugins all seem to fail to work on files larger than 2GB (2^31 bytes). The 7-zip split suggestion will help for distribution on an ISO9660 DVD, however, so thanks for that.

2) I have a solution (using the untgz plugin) which works fine. The files are compressed perfectly adequately, and the decompression works beautifully. The only problem is that there's no progress feedback. Decompressing a 2GB file can take ten or fifteen minutes, and the installer just sits there and looks like it has hung. This will confuse users.

3) 7-zip is a fine program, but it has *no* progress indicator on decompression. When you un-7-zip a large file, it just sits there printing nothing until it's done. Even if the file is split into ten pieces, you get no feedback until the whole of the file has decompressed.

To reiterate, the problem is the lack of progress indicator, not that I can't get it to work. Are there any other compression/decompression progs out these that I might have missed?