LinuxQuestions.org

LinuxQuestions.org (/questions/)
-   Ubuntu (https://www.linuxquestions.org/questions/ubuntu-63/)
-   -   Unable to read floppy in version 10.04 (https://www.linuxquestions.org/questions/ubuntu-63/unable-to-read-floppy-in-version-10-04-a-936367/)

Rodney2 03-25-2012 03:53 PM

Unable to read floppy in version 10.04
 
When I click on Places>computer>floppy drive and have a disk in the drive, I get the message "Unable to mount floppy no media in drive".
Is it possible to use a floppy in version 10.04 or should I abandon the attempt? thanks, Rodney

camorri 03-26-2012 08:41 AM

Quote:

Is it possible to use a floppy in version 10.04 or should I abandon the attempt?
Floppys should work. One of the reasons I gave up on Ubuntu, was you never really learn how things work in linux using buntus, or distros like it.

Here is what you need to mount your floppy. This assumes the hardware is working.

You need a mount point. I use /mnt/floppy/ If the directory floppy is not there, do a 'cd /mnt' and do a 'mkdir floppy' as root. On Bunuts put 'sudo' in front of the commands, and supply the root password when asked for it.

In /etc/fstab, make a backup of it before you edit this file. 'cp /etc/fstab /etc/fstab.back' will work. Now edit /etc/fstab with your favorite editor; I use nano. Add this line.

Quote:

/dev/fd0 /mnt/floppy auto noauto,owner 0 0
This assumes the device file for the floppy is fd0. Look in the dev directory for this file, it need to be there. If it is not, then the drive is not detected, or has been assigned a different name.

So, to get access to the floppy, put the diskette in the drive, open a konsole, and enter the command 'sudo mount /dev/fd0' and press enter. You should have access as a regular user at this point. You can close the terminal, and use what ever file manager you like.

When you are done, you should umount the diskette. 'sudo umount /dev/fd0' All commands without the quotes.

Thats it.


All times are GMT -5. The time now is 06:10 AM.