PC Review


Reply
Thread Tools Rate Thread

Bitwise copy of floppy disk

 
 
Arthur Rhodes
Guest
Posts: n/a
 
      2nd Sep 2007
I have a floppy disk with a proprietary format. I don't know exactly
what the format is. It's created on a drum machine.

I'd like to make duplicates of this floppy. Making copies with the
drum machine is extremely slow and tedious, so I want to do it with
my computer.

How could I do that? Windows can't read the floppy since its
format is unknown and probably not supported. All I need to do is make a
bit for bit copy of the floppy to another floppy.

Does anyone know how I could do that?

Thanks
 
Reply With Quote
 
 
 
 
philo
Guest
Posts: n/a
 
      2nd Sep 2007

"Arthur Rhodes" <(E-Mail Removed)> wrote in message
news:XIqdnUQiY5KLrUbbnZ2dnUVZ_s-(E-Mail Removed)...
> I have a floppy disk with a proprietary format. I don't know exactly
> what the format is. It's created on a drum machine.
>
> I'd like to make duplicates of this floppy. Making copies with the
> drum machine is extremely slow and tedious, so I want to do it with
> my computer.
>
> How could I do that? Windows can't read the floppy since its
> format is unknown and probably not supported. All I need to do is make a
> bit for bit copy of the floppy to another floppy.
>
> Does anyone know how I could do that?
>
> Thanks



Maybe a utility such as WinImage would do the trick


 
Reply With Quote
 
Newbie Coder
Guest
Posts: n/a
 
      3rd Sep 2007
Arthur,

What if you format the floppies in the computer first, use them in your drum
machine & then try to copy them?

Also, can't you install the drum machine as a MIDI device?

--
Newbie Coder
(It's just a name)




"philo" <(E-Mail Removed)> wrote in message
news:%23D$(E-Mail Removed)...
>
> "Arthur Rhodes" <(E-Mail Removed)> wrote in message
> news:XIqdnUQiY5KLrUbbnZ2dnUVZ_s-(E-Mail Removed)...
> > I have a floppy disk with a proprietary format. I don't know exactly
> > what the format is. It's created on a drum machine.
> >
> > I'd like to make duplicates of this floppy. Making copies with the
> > drum machine is extremely slow and tedious, so I want to do it with
> > my computer.
> >
> > How could I do that? Windows can't read the floppy since its
> > format is unknown and probably not supported. All I need to do is make a
> > bit for bit copy of the floppy to another floppy.
> >
> > Does anyone know how I could do that?
> >
> > Thanks

>
>
> Maybe a utility such as WinImage would do the trick
>
>



 
Reply With Quote
 
Todd H.
Guest
Posts: n/a
 
      3rd Sep 2007
Arthur Rhodes <(E-Mail Removed)> writes:

> I have a floppy disk with a proprietary format. I don't know exactly
> what the format is. It's created on a drum machine.
>
> I'd like to make duplicates of this floppy. Making copies with the
> drum machine is extremely slow and tedious, so I want to do it with
> my computer.
>
> How could I do that? Windows can't read the floppy since its
> format is unknown and probably not supported. All I need to do is make a
> bit for bit copy of the floppy to another floppy.
>
> Does anyone know how I could do that?


The unix command dd does what you describe.

You can find any number of bootable Linux CD's that you can boot into
and that won't touch your environment otherwise. This one is nice and
light: http://www.sysresccd.org/Main_Page You'll download an .iso
image of the bootable CD and use your favorite CD burning program (EZ
CD Creator, Nero, a Windows ISO burning plugin) to take that iso (a
recorded CD image) and make it into a burned Cd. Don't make the
mistake of trying to take the ISO file itself and stick it on a
regular CD-R as a file.

Once you have that CD, boot to it, and from there, I'd try this:

dd bs=1 count=1474560 if=/dev/fd0 of=/tmp/floppy.img

Swap a fresh disk into the drive and then:

dd bs=1 count=1474560 if=/tmp/floppy.img of=/dev/fd0

You may have to massage the count to match the disk size. With a
block size of 1, you're taking raw blocks of the floopy drive 0 and
stickin them in a temp file, and the next command just does the
opposite.

If you're a linux newbie, you can find all the details on the dd
command using the man command (man is for "manual"):

man dd

Another tack you can try using that same bootable cd is to try the
partimage program (a Ghost clone). I've never played with it with
floppies though.

Let us know how it turns out. It sounds like a fun little experiment.

Best regards,
--
Todd H.
http://www.toddh.net/
 
Reply With Quote
 
Peter Foldes
Guest
Posts: n/a
 
      3rd Sep 2007
Start\Run a:\copy and follow prompts

--
Peter

Please Reply to Newsgroup for the benefit of others
Requests for assistance by email can not and will not be acknowledged.

"Arthur Rhodes" <(E-Mail Removed)> wrote in message news:XIqdnUQiY5KLrUbbnZ2dnUVZ_s-(E-Mail Removed)...
>I have a floppy disk with a proprietary format. I don't know exactly
> what the format is. It's created on a drum machine.
>
> I'd like to make duplicates of this floppy. Making copies with the
> drum machine is extremely slow and tedious, so I want to do it with
> my computer.
>
> How could I do that? Windows can't read the floppy since its
> format is unknown and probably not supported. All I need to do is make a
> bit for bit copy of the floppy to another floppy.
>
> Does anyone know how I could do that?
>
> Thanks

 
Reply With Quote
 
Todd H.
Guest
Posts: n/a
 
      3rd Sep 2007
"Peter Foldes" <(E-Mail Removed)> writes:

> Start\Run a:\copy and follow prompts



This doesn't work...but it did trigger an alternate solution to my
unix dd-based solution that might be one hell of a lot easier. Boy
it's been years since I've copied a floppy.

Look into the DOS diskcopy command.

c:\> diskcopy a: a:

It will prompt you to swap disks as appropriate. If the help for
diskcopy is to be believed, it makes a sector by sector copy of the
disk, and should work on any format.


Best Regards,
--
Todd H.
http://www.toddh.net/
 
Reply With Quote
 
Andy
Guest
Posts: n/a
 
      3rd Sep 2007
Diskcopy
Copies the contents of the floppy disk in the source drive to a
formatted or unformatted floppy disk in the destination drive. Used
without parameters, diskcopy uses the current drive for the source
disk and the destination disk.
<http://www.microsoft.com/resources/documentation/windows/xp/all/proddocs/en-us/diskcopy.mspx?mfr=true>

On Sun, 02 Sep 2007 15:50:13 -0600, Arthur Rhodes
<(E-Mail Removed)> wrote:

>I have a floppy disk with a proprietary format. I don't know exactly
>what the format is. It's created on a drum machine.
>
>I'd like to make duplicates of this floppy. Making copies with the
>drum machine is extremely slow and tedious, so I want to do it with
>my computer.
>
>How could I do that? Windows can't read the floppy since its
>format is unknown and probably not supported. All I need to do is make a
>bit for bit copy of the floppy to another floppy.
>
>Does anyone know how I could do that?
>
>Thanks

 
Reply With Quote
 
Holger Petersen
Guest
Posts: n/a
 
      3rd Sep 2007
Arthur Rhodes <(E-Mail Removed)> writes:

>I have a floppy disk with a proprietary format. I don't know exactly
>what the format is. It's created on a drum machine.


>I'd like to make duplicates of this floppy.


>How could I do that? Windows can't read the floppy since its
>format is unknown and probably not supported.


>Does anyone know how I could do that?


Just try ANADISK and/or TELEDISK. They work best under pure DOS.
And/or ask in comp.os.cpm; especially for download-sites.

Good luck, Holger
 
Reply With Quote
 
Paul Randall
Guest
Posts: n/a
 
      3rd Sep 2007
There are an endless variety of ways to make it difficult to make copies of
floppies. Specialized software can change the number of sectors per track
or write its own stuff in the intersector gap, or whatever. The popular
computer magazines used to have ads for software and machines that could
'copy any format'. If you don't get an error when you view a directory of
the floppy in Windows, I would give WinImage a try. I assume you have
googled for the drum machine's name and the words copy floppy.

-Paul Randall

"Arthur Rhodes" <(E-Mail Removed)> wrote in message
news:XIqdnUQiY5KLrUbbnZ2dnUVZ_s-(E-Mail Removed)...
>I have a floppy disk with a proprietary format. I don't know exactly
> what the format is. It's created on a drum machine.
>
> I'd like to make duplicates of this floppy. Making copies with the
> drum machine is extremely slow and tedious, so I want to do it with
> my computer.
>
> How could I do that? Windows can't read the floppy since its
> format is unknown and probably not supported. All I need to do is make a
> bit for bit copy of the floppy to another floppy.
>
> Does anyone know how I could do that?
>
> Thanks



 
Reply With Quote
 
 
 
Reply

Thread Tools
Rate This Thread
Rate This Thread:

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are Off


Similar Threads
Thread Thread Starter Forum Replies Last Post
How do I copy from a floppy disk onto another floppy? =?Utf-8?B?SGFoYWhhbnRh?= Microsoft Word New Users 3 10th Apr 2006 07:47 AM
How do I copy a file to a floppy disk? =?Utf-8?B?bG92ZWhpcA==?= Microsoft Powerpoint 1 9th May 2005 12:41 AM
disk copy for 3 1/2 floppy dottie59us Windows XP General 4 22nd Jul 2004 04:14 AM
copy floppy disk files to c:\disk Sheila Windows XP Help 1 2nd Nov 2003 04:40 PM
ASR copy to other than a floppy disk aar Windows XP General 0 3rd Aug 2003 02:21 AM


Features
 

Advertising
 

Newsgroups
 


All times are GMT +1. The time now is 08:18 AM.