Need a tool to copy files to a floppy image

Programming, for all ages and all languages.
Post Reply
posman
Posts: 19
Joined: Fri Sep 05, 2008 12:55 pm

Need a tool to copy files to a floppy image

Post by posman »

Hi. I'm looking for a command-line tool to copy files (from HD) to a "formatted" floppy image. The image is FAT12, so I need a tool that let me copy one file to that image preserving file system. Rawrite (or dd) doesn't help since I have to specify sectors and that is not what I need

I'm using Windows XP, some suggestion?
User avatar
Brynet-Inc
Member
Member
Posts: 2426
Joined: Tue Oct 17, 2006 9:29 pm
Libera.chat IRC: brynet
Location: Canada
Contact:

Re: Need a tool to copy files to a floppy image

Post by Brynet-Inc »

I can't recommend any "Windows XP" specific utilities, but.. mtools should work, you may have to compile it in "cygwin" though.

This is all documented on the Wiki..
Image
Twitter: @canadianbryan. Award by smcerm, I stole it. Original was larger.
User avatar
Combuster
Member
Member
Posts: 9301
Joined: Wed Oct 18, 2006 3:45 am
Libera.chat IRC: [com]buster
Location: On the balcony, where I can actually keep 1½m distance
Contact:

Re: Need a tool to copy files to a floppy image

Post by Combuster »

Mtools +1
"Certainly avoid yourself. He is a newbie and might not realize it. You'll hate his code deeply a few years down the road." - Sortie
[ My OS ] [ VDisk/SFS ]
pcmattman
Member
Member
Posts: 2566
Joined: Sun Jan 14, 2007 9:15 pm
Libera.chat IRC: miselin
Location: Sydney, Australia (I come from a land down under!)
Contact:

Re: Need a tool to copy files to a floppy image

Post by pcmattman »

mtools and if you *must* have a GUI, try VFD. VFD mounts as a virtual floppy drive (hence the name) allowing you to use your image as a virtual floppy.
User avatar
mystran
Member
Member
Posts: 670
Joined: Thu Mar 08, 2007 11:08 am

Re: Need a tool to copy files to a floppy image

Post by mystran »

posman wrote:Hi. I'm looking for a command-line tool to copy files (from HD) to a "formatted" floppy image. The image is FAT12, so I need a tool that let me copy one file to that image preserving file system. Rawrite (or dd) doesn't help since I have to specify sectors and that is not what I need

I'm using Windows XP, some suggestion?
What do you mean by "have to specify sectors"?

For dd you can do just "dd if=image of=/dev/fda" (assuming /dev/fda is the floppy device, not sure how cygwin names those) and Rawrite can similarly just write complete images to disk. You can specify sectors for dd if you want, but it's not necessary.
The real problem with goto is not with the control transfer, but with environments. Properly tail-recursive closures get both right.
User avatar
Combuster
Member
Member
Posts: 9301
Joined: Wed Oct 18, 2006 3:45 am
Libera.chat IRC: [com]buster
Location: On the balcony, where I can actually keep 1½m distance
Contact:

Re: Need a tool to copy files to a floppy image

Post by Combuster »

Try mtools
"Certainly avoid yourself. He is a newbie and might not realize it. You'll hate his code deeply a few years down the road." - Sortie
[ My OS ] [ VDisk/SFS ]
User avatar
Love4Boobies
Member
Member
Posts: 2111
Joined: Fri Mar 07, 2008 5:36 pm
Location: Bucharest, Romania

Re: Need a tool to copy files to a floppy image

Post by Love4Boobies »

I doubt that Windows touches the already-existing part of the filesystem so it should be safe to copy from Explorer.

Hey, Combuster, any ideas on what he should use? :lol:
"Computers in the future may weigh no more than 1.5 tons.", Popular Mechanics (1949)
[ Project UDI ]
User avatar
i586coder
Member
Member
Posts: 143
Joined: Sat Sep 20, 2008 6:43 am

Re: Need a tool to copy files to a floppy image

Post by i586coder »

There is many software(running under windows) to creat image or edit image,but most of them trail

  • 1.MagicISO
    2.WINimg
    3.floppy image creator 5



I invite you to take spin in this link
http://www.magiciso.com
Distance doesn't make you any smaller,
but it does make you part of a larger picture.
User avatar
Masterkiller
Member
Member
Posts: 153
Joined: Sat May 05, 2007 6:20 pm

Re: Need a tool to copy files to a floppy image

Post by Masterkiller »

I have programmed something for windows XP, it can copy file to specified sector of device, or specified sector of device to file. Also has a HEX editor. It is still has some bugs I must remove and optimize the code. It can edit any volume you have, except CD and DVD (windows returns invalid function on write). Make sure that you select proper volume, because it can rewrite boot sector and filesystem sectors even on the HDD :wink:
Link: http://212.117.33.243/VolumeReader.rar
ALCA OS: Project temporarity suspended!
Current state: real-mode kernel-FS reader...
Post Reply