====== DOS BootCD ====== Die ewige Suche nach der DOS BootCD hat endlich ein Ende. Diese ist auch fuer den Linuxer interessant, da die meisten Biose nur von DOS aus geflashed werden koennen. Ausserdem ist das gefrickel mit (meist mehreren) Floppies einfach nervig. ===== DOS BootFloppy ===== Die wird tatsaechlich gebraucht, die BootCD basiert darauf. In diesem Beispiel wird [[http://www.biosflash.com/zips/drdos.zip|drdos]] verwendet. ===== Flash Files zum Image hinzufuegen ===== mount -t vfat -o loop FLOPPY.IMG /mnt df /mnt # check free space rm /mnt/qbasic.* # make some space cp FLASHPGM.EXE FLASHROM.BIN /mnt umount /mnt ===== BootCD bauen ===== 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 Der Parameter ''-c'' zu mkisofs wird zwar benoetigt, die Datei als Argument allerdings erstellt. ===== BootCD brennen ===== Das Brennen ist voellig unkritisch, einfach die Iso auf CD klatschen. ===== Links ===== [[http://www.nenie.org/misc/flashbootcd.html]]