I have a 6 Gb .iso file. Its a pc game How do I split it into two 3gb file so that it would fit into 2 dvds? Is there an application that can do the job? And how do I merge it later? Please help.

link|improve this question

68% accept rate
What kind of disk would it be? Data, DVD-Video, Bootable? etc... – BloodPhilia Jul 23 '10 at 8:36
of course it would be data, unless there's a bootable pc game – soul Jul 24 '10 at 6:52
feedback

5 Answers

up vote 8 down vote accepted

Either rar to split it into parts, or extract the individual files from the iso with something like imgburn and make a new iso at the destination.

link|improve this answer
feedback

You can use a file splitter/joiner utility to achieve this. HJSplit and GSplit are two good options. Both are freeware and very easy to use. HJSplit is a 344 KB file that does not need to be installed. A portable edition of GSplit is also available with no required installation.

link|improve this answer
feedback

There are various File Splitters that work in DOS. Then use COPY /b file1+file2+file_n Originalfile to reassemble.

Or try http://www.filesplitter.org/

link|improve this answer
feedback

WinRar is quick and easy.

link|improve this answer
feedback

if you're on linux you can do:

split -b 3G big.iso part

to split the big.iso into 3GiB parts named partaa, partab etc.

then use cat to put the files back together:

cat part* > big.iso

See man split for more information.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.