Tutorial on making floppy images on a windows image creator?

Question about which tools to use, bugs, the best way to implement a function, etc should go here. Don't forget to see if your question is answered in the wiki first! When in doubt post here.
Post Reply
kayode
Posts: 2
Joined: Fri Jan 19, 2007 10:54 am
Location: Lagos, Nigeria

Tutorial on making floppy images on a windows image creator?

Post 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.
User avatar
jerryleecooper
Member
Member
Posts: 233
Joined: Mon Aug 06, 2007 6:32 pm
Location: Canada

Post 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:
Post Reply