Complete.Org: Mailing Lists: Archives: linux-help: August 2002:
[linux-help] Re: Saving to a floppy disk
Home

[linux-help] Re: Saving to a floppy disk

[Top] [All Lists]

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index] [Thread Index]
To: linux-help@xxxxxxxxx
Subject: [linux-help] Re: Saving to a floppy disk
From: Jeff Vian <jvian10@xxxxxxxxxxx>
Date: Sun, 18 Aug 2002 22:00:13 -0500
Reply-to: linux-help@xxxxxxxxx



The PC-Zone wrote:
> I am not getting an error message, its just not writing my files to the disk
> 
> ----- Original Message -----


you said you were mounting the floppy on /foo

Thus to copy files there you would issue

cp filename /foo
This can be done for one or many filenames.
then after the disk activity ends you verify the files copied with
ls /foo.
you should now see the files you copied.
Finally dismount the floppy with

umount /foo

Redhat (by default) creates a directory named /mnt/floppy
and if you do

mount /dev/fd0

it will mount the floppy on the default mount point (/mnt/floppy). In 
this case the copy command would be:

cp filename /mnt/floppy
and the listing of the files would be
ls /mnt/floppy

Then the unmount command would be
umount /dev/fd0
or
umount /mnt/floppy

-- 
Jeff Vian
jvian10@xxxxxxxxxxx

-- This is the linux-help@xxxxxxxxx list.  To unsubscribe,
visit http://www.complete.org/cgi-bin/listargate-aclug.cgi


[Prev in Thread] Current Thread [Next in Thread]