OK, I'm sure many have already downloaded the 5 CD isos and want to make a DVD image of it. I've looked around and found some similar scripts on how to do it.
Use this script after you download the CD isos to create a DVD iso.
You will need about 6GB of free space and about 5 mins of time. It's worked for me!
PS : Do not change install package options, or the installer will crash (hey it's still in test phases). I've noticed a lot of other bugs in FC5t1 and if you use ndiswrapper you'll have to download the kernel-devel package (not on the CD). Also the system-config-packages doesn't work (says it can't find tree) - I even tried using CD1 iso and it still fails - so you'll have to install RPMs manually until that's fixed.
Enjoy!
#/bin/bash
#Desc : convert CDs to DVD image for Fedora Core 5 test1
#Req : iso images in current folder (FC5-test1-i386-disc#.iso)
#mount CD images
mkdir -p disk1
mount -o ro,loop FC5-test1-i386-disc1.iso disk1
mkdir -p disk2
mount -o ro,loop FC5-test1-i386-disc2.iso disk2
mkdir -p disk3
mount -o ro,loop FC5-test1-i386-disc3.iso disk3
mkdir -p disk4
mount -o ro,loop FC5-test1-i386-disc4.iso disk4
mkdir -p disk5
mount -o ro,loop FC5-test1-i386-disc5.iso disk5
#copy files
mkdir -p dvd
cp -av disk1/* dvd
cp -pv disk2/Fedora/RPMS/*.rpm dvd/Fedora/RPMS
cp -pv disk3/Fedora/RPMS/*.rpm dvd/Fedora/RPMS
cp -pv disk4/Fedora/RPMS/*.rpm dvd/Fedora/RPMS
cp -pv disk5/Fedora/RPMS/*.rpm dvd/Fedora/RPMS
#clean dvd folder
find dvd -name TRANS.TBL | xargs rm -f
# patch .discinfo
awk '{ if ( NR == 4 ) { print "1,2,3,4,5" } else { print; } }' disk1/.discinfo > dvd/.discinfo
#unmount CD images
umount disk1
rm disk1
umount disk2
rm disk2
umount disk3
rm disk3
umount disk4
rm disk4
umount disk5
rm disk5
#create DVD image from copied files
mkisofs -J -R -v -T -V "FC5test1" -b isolinux/isolinux.bin -c isolinux/boot.cat -no-emul-boot -boot-load-size 8 -boot-info-table -o FC5-i386-dvd.iso dvd
# -J = Joliet filesystem
# -R = Rock Ridge filesystem protocol
# -v = verbose output (show progress)
# -T = generate TRANS.TBL in each folder
# -V "name" = create a volume label (optional)
# -b "file" = use file as a boot file (binary)
# -c "file" = use file as a boot file (catalog)
# -no-emul-boot = do not emulate any boot schemes (floppy, harddrive, etc.)
# -boot-load-size # = # of sectors to load (should be multiple of 4)
# -boot-info-table = creates a boot info table to make disc bootable
# -o "file" = output image
# dvd = input files