[linux-help] Re: Saving to a floppy disk
[Top] [All Lists]
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index] [Thread Index]
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
[linux-help] Re: Saving to a floppy disk, Koji Hayakawa, 2002/08/18
|
|