Objective
Step by step instructions for uploading files larger than 2GB to TUF.
Hitachi provides a utility called "TUF Split, File Utility" which automates the splitting and upload of large files to TUF. This is the easiest and most automatic method for uploading a large file to TUF without following a manual procedure. More details about the tool are at:
How to Download and Install TUF Split File Utility
If you can not use the Automated tool, we provide the manual process bellow to split files into 2GB or smaller chunks.
A free open source utility called 7zip is available for windows which can easily compress and split large files.
Once you have installed 7zip, you can split a file into 2GB chunks very simply.
The standard UNIX utility split can split files. The following command will compress and split a file into 2GB chunks:
gzip -c /path/to/your/large/file | split --bytes=2G - compressed.gz
Some points to consider: