Kijk eens op onderstaande pagina:
http://www.nenie.org/misc/flashbootcd.html
Eendje bedankt voor de zinvolle aanwijzing
boot disks are available online, from
http://www.bootdisk.com for instance.
Creating the bootable CD
To create a bootable CD, we just need to create an ISO filesystem that contains the image, and tell mkisofs where it is within the CD hierarchy and to create it, using the -b option. The CD also needs a catalog file that mkisofs's -c option will create inside the filesystem. (-r deals with permissions.)
Once this is done, just burn the ISO filesystem to CD as usual.
* mkdir /tmp/bootcd # temporary directory for CD image
* cp FLOPPY.IMG /tmp/bootcd/ # add floopy image to CD root
* mkisofs -r -b FLOPPY.IMG -c boot.cat -o /tmp/bootcd.iso /tmp/bootcd
* cdrecord dev=X,Y,Z /tmp/bootcd.iso
* rm -r /tmp/bootcd # cleanup temporary files
* rm /tmp/bootcd.iso
groet senco