5 CDs --> DVD ? (how?)
I grabbed a script nearly identical to this one off the net a
couple years back. I used this script in its exact form to
create an installation DVD from the Mandriva 2006 "December Club"
CD set. I've installed twice from the DVD I created.
Good luck...
#!/bin/sh
# 1. create five directories for mounting the iso-files:
#
# mkdir cd1 cd2 cd3 cd4 cd5
#
# 2. mount your iso-files:
# You might need to be root to do this part.
#
# mount -o ro,loop /path/to/CD1.iso cd1
# mount -o ro,loop /path/to/CD2.iso cd2
# mount -o ro,loop /path/to/CD3.iso cd3
# mount -o ro,loop /path/to/CD4.iso cd4
# mount -o ro,loop /path/to/CD5.iso cd5
#
# 3. copy the needed boot files:
#
# cp -a cd1/isolinux .
# rm -f isolinux/boot.cat
#
# 4. create a DVD iso-file
mkisofs \
-o Mandriva-2006-December-Club-DVD.iso \
-b isolinux/isolinux.bin \
-c isolinux/boot.cat \
-no-emul-boot \
-boot-load-size 4 \
-boot-info-table \
-J \
-l \
-publisher Mandriva \
-r \
-V Mandriva_2006.0_December_Club \
-x cd1/isolinux \
-graft-points \
cd1 \
isolinux/=isolinux \
Boot/=cd2/Boot \
media/=cd2/media \
Dkms/=cd3/Dkms \
Firmware/=cd3/Firmware \
media/=cd3/media \
Modules/=cd3/Modules \
Plugins/=cd3/Plugins \
media/=cd4/media \
media/=cd5/media \
media/=cd6/media
--
PLEASE post a SUMMARY of the answer(s) to your question(s)!
Show Windows & Gates to the exit door.
Unless otherwise noted, the statements herein reflect my personal
opinions and not those of any organization with which I may be affiliated.
|