How do I burn .img files onto floppy disk?

12

2

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?

r0ca

Posted 2010-02-10T20:01:21.177

Reputation: 5 474

3Clearly you know that you don’t “burn” a floppy; you write it. ;-) – Synetech – 2011-03-09T05:09:17.190

Yhea, write is now a bit old as word ;) – r0ca – 2011-03-13T21:13:22.997

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 – 2011-03-14T00:05:07.997

Well.. I'm a french canadian so we don't often use the word Write. It's burn or copy. Pretty much... – r0ca – 2011-03-14T13:53:19.687

Answers

7

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.

William Hilsum

Posted 2010-02-10T20:01:21.177

Reputation: 111 572

10

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

user1686

Posted 2010-02-10T20:01:21.177

Reputation: 283 655

Yhea sorry, I wanted to burn .img file over a Windows XP Pro SP3 OS. Sorry for the lack of info. – r0ca – 2010-02-11T14:46:45.820

7

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.)

quack quixote

Posted 2010-02-10T20:01:21.177

Reputation: 37 382

3ahh, if only we could tag answers too. this one so needs a [nostalgia] tag. – quack quixote – 2010-02-10T20:10:53.797

1I'm not against the idea! For old old old technologies – r0ca – 2010-02-10T20:20:10.850

4

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

raven

Posted 2010-02-10T20:01:21.177

Reputation: 5 135

0

I'm still using floppy disks (I'm very nostalgic to these days of the 90's) and I recommend DiskWRITE for those who use Windows.

Alternatively, if you're using Linux,nothing is like using dd:

dd if=imagename.img of=/dev/fd0 bs=1024 conv=sync;sync

(I took this from the DEBIAN documentation)

jihed gasmi

Posted 2010-02-10T20:01:21.177

Reputation: 111

For some reason this program do not work with all .IMG files – Brethlosze – 2019-01-01T05:36:41.080