Simple howto split large file into several parts.
In the following example the file IMAGE.iso is splitted into several 1,5GB files.
Command for splitting: split -b 1500m IMAGE.iso part
This command will create several parts named like partaa, partab, partac etc.
Joining these files back together: cat parta* > IMAGE.iso
No comments:
Post a Comment