Linux - Hardware This forum is for Hardware issues.
Having trouble installing a piece of hardware? Want to know if that peripheral is compatible with Linux? |
Notices |
Welcome to LinuxQuestions.org, a friendly and active Linux Community.
You are currently viewing LQ as a guest. By joining our community you will have the ability to post topics, receive our newsletter, use the advanced search, subscribe to threads and access many other special features. Registration is quick, simple and absolutely free. Join our community today!
Note that registered members see fewer ads, and ContentLink is completely disabled once you log in.
Are you new to LinuxQuestions.org? Visit the following links:
Site Howto |
Site FAQ |
Sitemap |
Register Now
If you have any problems with the registration process or your account login, please contact us. If you need to reset your password, click here.
Having a problem logging in? Please visit this page to clear all LQ-related cookies.
Get a virtual cloud desktop with the Linux distro that you want in less than five minutes with Shells! With over 10 pre-installed distros to choose from, the worry-free installation life is here! Whether you are a digital nomad or just looking for flexibility, Shells can put your Linux machine on the device that you want to use.
Exclusive for LQ members, get up to 45% off per month. Click here for more info.
|
 |
04-07-2003, 06:17 AM
|
#1
|
Member
Registered: May 2001
Location: Pangaea
Distribution: SimplyMepis2004
Posts: 78
Rep:
|
What happened to my floppy?
While attempting to diagnose a problem on another computer, I removed the 3.5" floppy drive from my dual-boot Linux/Win98 computer(with the computer turned off, of course). I later reinstalled it (also with computer turned off), and when booting to Linux (SuSE 7.1), now the floppy drive doesn't work. When attempting to read a disc I receive the error message "/dev/fd0: no such file or directory".
What happened while the computer was turned off to cause this problem?
How can I correct it? The drive works fine in Win98.
Ron
|
|
|
04-07-2003, 12:36 PM
|
#2
|
Member
Registered: Mar 2002
Location: Debian Galaxy
Distribution: Debian
Posts: 711
Rep:
|
I would check the floppy setup in BIOS.
|
|
|
04-07-2003, 12:47 PM
|
#3
|
LQ Newbie
Registered: Nov 2002
Location: Crofton, MD
Distribution: RedHat 9.0
Posts: 15
Rep:
|
Check the orientation of the floppy cable. Check the drive and the motherboard for pin one. For some reason some manufacturers have stopped using a "keyed" cables and connectors, i.e. now they can go either way. I have put a floppy cable on backward more than once. Usually, the led on the floppy will light up and not go out...
James.
|
|
|
04-08-2003, 12:52 PM
|
#4
|
Member
Registered: Mar 2002
Location: Debian Galaxy
Distribution: Debian
Posts: 711
Rep:
|
"The drive works fine in Win98."
|
|
|
04-12-2003, 06:05 AM
|
#5
|
Member
Registered: May 2001
Location: Pangaea
Distribution: SimplyMepis2004
Posts: 78
Original Poster
Rep:
|
Floppy STILL doesn't work, different error message.
Now when attempting to mount the 3.5" floppy drive, either using the desktop icon or by invoking the mount command in a terminal window, I receive the error message "/dev/fd0 is not a block device".
When observing the directory tree in the file browser Konqueror, the name fd0 is in italics, unlike the names of the other folders. Is there a particular reason for this?
Ron
|
|
|
04-12-2003, 06:33 AM
|
#6
|
Member
Registered: May 2001
Location: Pangaea
Distribution: SimplyMepis2004
Posts: 78
Original Poster
Rep:
|
Oh yes, results from cat /etc/fstab are: /dev/fd0 /floppy auto noauto,user,exec, 0 0
|
|
|
04-15-2003, 01:51 PM
|
#7
|
Member
Registered: Mar 2002
Location: Debian Galaxy
Distribution: Debian
Posts: 711
Rep:
|
Mine is:
/dev/fd0 /mnt/floppy auto defaults,noauto,user 0 0
for Slackware.
That "not block device" usually means either no disk or the drive isn't configured properly. You're not mounting an empty drive?
ls -la /dev/fd0
ls -la /floppy
They shouldn't be linked to anything.
BTW, it can't have auto and noauto on the same line.
|
|
|
04-15-2003, 03:08 PM
|
#8
|
Member
Registered: May 2001
Location: Pangaea
Distribution: SimplyMepis2004
Posts: 78
Original Poster
Rep:
|
In my /etc/fstab file, the term 'auto' is in the field indicating file type, as one may never be certain what types of files are to be found on a floppydisc. the 'noauto' is in the field indicating that the floppy drive is not to be automatically mounted during bootup.
The line for my CDROM drive also has 'auto' and 'noauto' in the same places, and works ok.
Drive is not empty, lately I've been using a Linux boot disc, which Win98 is able to open and read without difficulty.
I'll do the ls -la for the drive and mountpoint and post results shortly (I'm in Win98 at the moment)
Thanks for your help
Ron
|
|
|
04-16-2003, 06:17 PM
|
#9
|
Member
Registered: May 2001
Location: Pangaea
Distribution: SimplyMepis2004
Posts: 78
Original Poster
Rep:
|
The results of ls -la /dev/fd0 are lrwxrwxrwx 1 root root 13 Apr 14 /dev/fd0 >/proc/self/fd0
The results of ls -la /floppy are :
total 8
drwxr-xr-x 2 root 4096
drwxr-xr-x 23 root 4096
So, I am guessing this means there ARE some links. How do I know where they are and how do I disconnect them?
Ron
|
|
|
04-16-2003, 11:00 PM
|
#10
|
Member
Registered: Feb 2003
Distribution: Debian
Posts: 797
Rep:
|
This looks like you're problem. It looks like /dev/fd0 is just a symlink. That is not good.
rm /dev/fd0
grep fd /proc/devices #see if that gets you anything
mknod /dev/fd0 b 2 0 #see if you can create it, after first removing it
|
|
|
04-18-2003, 05:00 AM
|
#11
|
Member
Registered: May 2001
Location: Pangaea
Distribution: SimplyMepis2004
Posts: 78
Original Poster
Rep:
|
Well, now there is something different, and that may be an improvement.
When attempting to mount the disc, I receive the message: "I can't determine file type, and none was specified".
Ron
|
|
|
04-18-2003, 09:53 AM
|
#12
|
Member
Registered: Feb 2003
Distribution: Debian
Posts: 797
Rep:
|
1. What is the mount command you are using?
2. What do you get from 'grep fd0 /etc/fstab'
3. What format is the floppy? Is it FAT, ext, ...?
|
|
|
04-19-2003, 05:37 AM
|
#13
|
Member
Registered: May 2001
Location: Pangaea
Distribution: SimplyMepis2004
Posts: 78
Original Poster
Rep:
|
I tried several commands attempting to mount:
I tried the desktop icon.
I tried "mount /dev/fd0 /floppy"
I tried "mount /floppy"
I tried "mount /dev/fd0"
One disc had some .jpg files which I wanted to install as background on the desktop. Since they were taken from the Win98 system, they were FAT32. Another disc was the SuSE 7.1 boot disc. It won't read either of them, while Win98 reads them both, using the same 3.5 drive on the same machine.
I tried booting last night to attempt "grep fd0 /etc/fastab", as I could not find my notes from the previous attempt.
The machine will no longer even boot to Linux, partway during the boot process, I receive the error message "Kernel panic: VFS: unable to mount root fs on 3:43"
Searching the titles of problems here, I notice that there are many problems with nvidia chips on video cards, and I have a the Geforce MX440.
Ron
|
|
|
04-19-2003, 09:28 AM
|
#14
|
Member
Registered: Feb 2003
Distribution: Debian
Posts: 797
Rep:
|
did you compile your kernel recently?
looks to me like you did and forgot to include support for your fs (e. ext3, or whatever)
|
|
|
All times are GMT -5. The time now is 12:02 PM.
|
LinuxQuestions.org is looking for people interested in writing
Editorials, Articles, Reviews, and more. If you'd like to contribute
content, let us know.
|
Latest Threads
LQ News
|
|