Try the command split. In a SuSE distro, split is part of coreutils rpm package.
I understanding you want to split the file only for backup or to move the file to another place. You can't play the set as a two disk movie.
One way to use split may be something like that:
$ split -b 700m bigfile.avi
The result are files with sizes less then 700MB, with names like xaa, xab, xac...of course, you may specify the prefix and a suffix for the splited files. Read the fine manual.
|