I am trying to use tar to split a single file in to parts small enough to fit on a 1.44MB floppy on Solaris 5.8.
According to the references below, I should be able to achieve this by using the k option to specify the size of the segments, and the f option to specify the output file.
I have tried the command in various formats:
tar cvf -k 1378 <output file> <input file>
tar cvf <output file> <input file> -k 1378
tar cvf <output file> -k 1378 <input file>
At best, this produces a file with the name of one of the options, at the same size as the original file.
The tar utility provided differs from the GNU tar utility available on most modern Linux systems. gtar is not available. I am unable to install new packages on this system.
Alternatively, do you know of any other utilities that exist on a Solaris 5.8 base install?
References:
I've opted for the 'unclean' method of using dd to move the file across in segments, e.g.
And then reassembling at the other end:
There are likely better ways, but this seems to have served the purpose.