I want to "burn" 3 DOS 6.22 floppy disks. I have 3 .img files but I can't "burn" these .img files onto a floppy. I get the message that the file is too big for the target.

What tool can I use (I used one in the past but I don't remember which one...) to "burn" .img file to the floppy disk?

link|improve this question

Clearly you know that you don’t “burn” a floppy; you write it. ;-) – Synetech Mar 9 '11 at 5:09
Yhea, write is now a bit old as word ;) – r0ca Mar 13 '11 at 21:13
Not really, you write to hard-drives, to flash-drives, to memory-cards, files, CMOS, EEPROMs… (Only optical discs and flash EPROMs are burned. I can’t really think of other types of / verbs for data writing. Huh.) – Synetech Mar 14 '11 at 0:05
Well.. I'm a french canadian so we don't often use the word Write. It's burn or copy. Pretty much... – r0ca Mar 14 '11 at 13:53
feedback

4 Answers

up vote 5 down vote accepted

For floppy disks, It isn't free but I would highly recommend Winimage, I recently used this when messing around with PXE disk images and it works very well for this sort of thing.

link|improve this answer
That's the one I was lookign for! Thanks! – r0ca Feb 10 '10 at 20:04
feedback

You're probably remembering rawrite.exe; it used to be included with early Linux distributions like Slackware for creating a bootable LILO floppy. Find it here. (Author's site, may be down.)

link|improve this answer
3  
ahh, if only we could tag answers too. this one so needs a [nostalgia] tag. – quack quixote Feb 10 '10 at 20:10
1  
I'm not against the idea! For old old old technologies – r0ca Feb 10 '10 at 20:20
feedback

And just for completion - dd, the usual Linux way. (You didn't mention your OS.)

dd if=disk1.img of=/dev/fd0

On Windows:

dd if=disk1.img of=\\?\Device\Floppy0
link|improve this answer
Yhea sorry, I wanted to burn .img file over a Windows XP Pro SP3 OS. Sorry for the lack of info. – r0ca Feb 11 '10 at 14:46
feedback

I used to use RawWrite for Windows. Works quite nicely and it's free.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.