Re: How to copy floppy disks.

2000-04-20 Thread fred smith
On Thu, Apr 20, 2000 at 04:19:59PM -0400, rpjday wrote: > > On Thu, 20 Apr 2000, Juan Martinez wrote: > > > I've read every message in this thread and have one question. > > > > Does it matter what block size is used with the dd command? I > > know you should use the same size when writing the

Re: How to copy floppy disks.

2000-04-20 Thread Rajagopal Subash
l 20, 2000 9:03 PM Subject: Re: How to copy floppy disks. >> From: "Manuel A. Camacho Q." <[EMAIL PROTECTED]> >> >> Hi! >> >> I know this must be a simple one, but got no idea. How can I copy floppy >> disks on a single disk drive unit? (from th

Re: How to copy floppy disks.

2000-04-20 Thread Manuel A. Camacho Q.
> Hmmm, maybe that would be a good claim for me for Linux > Immortality (tm) an embarrassingly simple little > C code program to do a disk copy... > Don't tell me... I just accomplished my mission on this world! =) (Hey man, you just made me feel important!) -Manuel. -- To unsubsc

Re: How to copy floppy disks.

2000-04-20 Thread Manuel A. Camacho Q.
Thanks! -Manuel. "Mikkel L. Ellertson" wrote: > > At 02:15 PM 4/18/00 -0500, you wrote: > >Hi! > > > >I know this must be a simple one, but got no idea. How can I copy floppy > >disks on a single disk drive unit? (from the shell prompt) > > > >Thanks a lot. > > > >-Manuel. > > > Here is a shell

Re: How to copy floppy disks.

2000-04-20 Thread rpjday
On Thu, 20 Apr 2000, Michael George wrote: > On Apr 19, Anthony E. Greene wrote: > > > > There may be something like DOS's diskcopy, but this will work too: > > > > (insert source disk) > > mount /dev/fd0 > > dd if=/dev/fd0 of=somefile bs=1440k > > umount /dev/fd0 > > > > (insert destination

Re: How to copy floppy disks.

2000-04-20 Thread rpjday
On Thu, 20 Apr 2000, Juan Martinez wrote: > I've read every message in this thread and have one question. > > Does it matter what block size is used with the dd command? I > know you should use the same size when writing the floppy that > you used when creating the image. nope, not necessary.

RE: How to copy floppy disks.

2000-04-20 Thread Ward William E PHDN
--- -Original Message----- From: Manuel A. Camacho Q. [mailto:[EMAIL PROTECTED]] Sent: Wednesday, April 19, 2000 11:25 PM To: Danny Cc: recipient.list.not.shown; @nswcphdn.navy.mil Subject: Re: How to copy floppy disks. Danny wrote: > > I believe you might be typin

RE: How to copy floppy disks.

2000-04-20 Thread Ward William E PHDN
over the weekend (I have off tomorrow :> ) Bill Ward -Original Message- From: Manuel A. Camacho Q. [mailto:[EMAIL PROTECTED]] Sent: Wednesday, April 19, 2000 11:25 PM To: Danny Cc: recipient.list.not.shown; @nswcphdn.navy.mil Subject: Re: How to copy floppy disks. Danny wrote: >

Re: How to copy floppy disks.

2000-04-20 Thread Michael George
On Apr 19, Anthony E. Greene wrote: > > There may be something like DOS's diskcopy, but this will work too: > > (insert source disk) > mount /dev/fd0 > dd if=/dev/fd0 of=somefile bs=1440k > umount /dev/fd0 > > (insert destination disk) > mount /dev/fd0 > dd if=somefile of=/dev/fd0 bs=1440k I d

Re: How to copy floppy disks.

2000-04-20 Thread Juan Martinez
-To: [EMAIL PROTECTED] > To: [EMAIL PROTECTED] > Subject: Re: How to copy floppy disks. > Resent-Date: 20 Apr 2000 13:27:18 - > Resent-From: [EMAIL PROTECTED] > Resent-cc: recipient list not shown: ; > > "Manuel A. Camacho Q." wrote: > > I know this must be a

Re: How to copy floppy disks.

2000-04-20 Thread Manuel A. Camacho Q.
Danny wrote: > > I believe you might be typing about tansferring files to the Windows OS. > Maybe not!!! anyway if you are typing about transfering floppies with Microsoft > OS check out this tool called "mtool" from Nop. Duplicating a diskette using the Linux shell (bash). Seems by the replies

Re: How to copy floppy disks.

2000-04-20 Thread Danny
I believe you might be typing about tansferring files to the Windows OS. Maybe not!!! anyway if you are typing about transfering floppies with Microsoft OS check out this tool called "mtool" from www.rpmfind.net On Wed, 19 Apr 2000, Manuel A. Camacho Q. wrote: > Hi! > > I know this must be a s

Re: How to copy floppy disks.

2000-04-20 Thread Jonathan Gallmeier
You only have one floppy (and an assumed hard drive, no network)? Since you can only mount one floppy at a time, you will need to copy the contents of the floppy to the hard drive (or ramdisk) using your favorite copy method, e.g., tar, cp, dd, etc. then swap floppes and copy the files back. I ca

Re: How to copy floppy disks.

2000-04-20 Thread Matt Housh
> I know this must be a simple one, but got no idea. How can I copy floppy > disks on a single disk drive unit? (from the shell prompt) 1) insert the disk 2) # dd if=/dev/fd0 of=tempfile 3) insert the second disk 4) # dd if=tempfile of=/dev/fd0 Matt ---

Re: How to copy floppy disks.

2000-04-20 Thread Anthony E. Greene
"Manuel A. Camacho Q." wrote: > I know this must be a simple one, but got no idea. How can I copy floppy > disks on a single disk drive unit? (from the shell prompt) There may be something like DOS's diskcopy, but this will work too: (insert source disk) mount /dev/fd0 dd if=/dev/fd0 of=somefile

Re: How to copy floppy disks.

2000-04-20 Thread Joe Brenner
"Manuel A. Camacho Q." <[EMAIL PROTECTED]> wrote: > I know this must be a simple one, but got no idea. How can I copy floppy > disks on a single disk drive unit? (from the shell prompt) There are many ways of doing this, and some of them are probably easier than what I'm going to tell you here

Re: How to copy floppy disks.

2000-04-20 Thread Mikkel L. Ellertson
At 02:15 PM 4/18/00 -0500, you wrote: >Hi! > >I know this must be a simple one, but got no idea. How can I copy floppy >disks on a single disk drive unit? (from the shell prompt) > >Thanks a lot. > >-Manuel. > Here is a shell script I can accross a while ago... #!/bin/sh #

Re: How to copy floppy disks.

2000-04-20 Thread Dave Reed
> From: "Manuel A. Camacho Q." <[EMAIL PROTECTED]> > > Hi! > > I know this must be a simple one, but got no idea. How can I copy floppy > disks on a single disk drive unit? (from the shell prompt) > > Thanks a lot. > > -Manuel. If the disk just contains files, cp the files to a hard disk inse

Re: How to copy floppy disks.

2000-04-20 Thread Robert Fausey
On Tue, 18 Apr 2000, Manuel A. Camacho Q. wrote: Make an image of the disk and then write the image to the destination floppy. Use dd if=/dev/fd0 of=floppy.img bs=144k to make the image an then dd if=floppy.img of=/dev/fd0 bs=144k to write the image. > > I know this must be a simple one, but g

Re: How to copy floppy disks.

2000-04-20 Thread Rick Forrister
[EMAIL PROTECTED] said: > I know this must be a simple one, but got no idea. How can I copy > floppy disks on a single disk drive unit? (from the shell prompt) dd is probably the best choice. For a first try, just dd if=/dev/fd0 of=floppy.img dd if=floppy.img of=/dev/fd0 HIH rickf -- R

Re: How to copy floppy disks.

2000-04-20 Thread rpjday
On Tue, 18 Apr 2000, Manuel A. Camacho Q. wrote: > Hi! > > I know this must be a simple one, but got no idea. How can I copy floppy > disks on a single disk drive unit? (from the shell prompt) $ dd if=/dev/fd0 of=/tmp/whatever bs=72k (the 72k is arbitrary) (swap floppies) $ dd if=/tmp/whatev

How to copy floppy disks.

2000-04-19 Thread Manuel A. Camacho Q.
Hi! I know this must be a simple one, but got no idea. How can I copy floppy disks on a single disk drive unit? (from the shell prompt) Thanks a lot. -Manuel. -- To unsubscribe: mail [EMAIL PROTECTED] with "unsubscribe" as the Subject.