I want to split a file into M parts, such that I can recover the file from N of those M parts. (Where M>N, and I get to choose both M and N).
For example:
- I have
FILE.IMG - I split
FILE.IMGinto M=3 parts. - I set the split-time encoding to allow me to recover the file from any N=2 of those parts.
- The encoding/splitting is finished, I now have
FILE.IMG.1,FILE.IMG.2andFILE.IMG.3 - I delete any one of those three new files, and yet I can still recover the original
FILE.IMG
I use Ubuntu Linux, and hope for an answer using apt-get-able tools thereon.