LinuxQuestions.org

LinuxQuestions.org (/questions/)
-   Linux - Software (https://www.linuxquestions.org/questions/linux-software-2/)
-   -   reading a floppy (https://www.linuxquestions.org/questions/linux-software-2/reading-a-floppy-258244/)

vasanthraghavan 11-23-2004 02:08 AM

reading a floppy
 
Hi,
Therre is a MS DOS floppy disk containing files which need to be copied to hard disk in a Linux computer. how can one make the Linux machine read the floppy?
Thank you.

IBall 11-23-2004 02:39 AM

Insert the disk in the drive, and execute the command (in an xterm):
Code:

mount /mnt/floppy
The files are now available in /mnt/floppy. EG: "cp /mnt/floppy/* /home/vasanthraghavan/"

When you are finished, run the command
Code:

umount /mnt/floppy
Make sure that you are not currently in any subdirectory of /mnt/floppy, or it wont let you unmount the disk. Make sure you do this, otherwise you will lose data.

I hope this helps
--Ian

vasanthraghavan 02-01-2005 07:17 PM

Thank you. it worked. my apologies for acknowledging so late.(did not have access to a monitor while in India, to try out and look at the output of the commands)


All times are GMT -5. The time now is 02:53 PM.