Page 1 of 1

Tutorial on making floppy images on a windows image creator?

Posted: Fri Aug 31, 2007 10:09 am
by kayode
Hi,
I've been having trouble with making disk images.
I was wondering if anyone has a tutorial on the steps of making a disk image with the bootloader on it instead of that which the disk image utility places on the image? :?:
Thanks.

Posted: Fri Aug 31, 2007 1:57 pm
by jerryleecooper
You mean, using dd if=bootloader of=diskimage bs=512 count=2880 ?
Don't forget to add more than 1.44mb of garbage data after your bootloader file using cat. Example:

Code: Select all

cat bootloader kernel garbage > bootloader.img
dd if=bootloader.img of=diskimage bs=512 count=2880 
To copy a the image to a floppy, use dd if=diskimage of=\\.\a: