Burn multiple iso files into one DVD for installing solaris 10
I have download the 5 DVD segments of solaris operating system and i don磘 know how to burn them into a bootable DVD for installation.
Somebody can help me ?
Thanks
I have already solved my problem following the indications of the document "Solaris[TM] 10 Operating system: How to configure an install server from
DVD ISO files"
[358 byte] By [
altea] at [2007-11-26 8:18:50]

# 1
You have to combine the 5 files you've downloaded into a single ISO and then burn it to a DVD. The procedure is outlined at http://www.sun.com/software/solaris/download_instruction.xml, but the basic steps are:
1. Download all the parts
2. Unzip the individual files to a single directory
3. Combine the files
On UNIX, you can combine the files with a command like:
cat sol-10-u2-ga-sparc-dvd-iso-a sol-10-u2-ga-sparc-dvd-iso-b
sol-10-u2-ga-sparc-dvd-iso-c sol-10-u2-ga-sparc-dvd-iso-d
sol-10-u2-ga-sparc-dvd-iso-e > sol-10-GA-sp-dvd.iso
On Windows, the command would be:
copy /b file1 + file2 [+ fileN] filename.iso
Where file1 through fileN are the images that were downloaded.