Create multiple volumn zip backup with MD5 check
Download and install p7zip:
http://p7zip.sourceforge.net/
Then use 7z
Code:
7z a -v50m test.zip your-big-file-paths
this makes 50 MB volumes called
Code:
test.zip.001 test.zip.002 test.zip.003 test.zip.004
To extract them just run
Code:
7z x test.zip.001
make md5
# md5sum test.zip.* > MD5SUM
# cat MD5SUM
cb16175f4acad02f977f74d5c142879b test.zip.001
33c745ca49ab6e63b727658ec148cf67 test.zip.002
14e6952b632fbb7f4c0731067afdb46c test.zip.003
....
check md5
# md5sum --check MD5SUM






