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.
Tutorial on making floppy images on a windows image creator?
- jerryleecooper
- Member
- Posts: 233
- Joined: Mon Aug 06, 2007 6:32 pm
- Location: Canada
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:
To copy a the image to a floppy, use dd if=diskimage of=\\.\a:
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