LinuxQuestions.org
Share your knowledge at the LQ Wiki.
Go Back   LinuxQuestions.org > Forums > Linux Forums > Linux - Hardware
User Name
Password
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


Reply
  Search this Thread
Old 11-26-2002, 07:58 PM   #1
jolly_good2000
LQ Newbie
 
Registered: Nov 2002
Distribution: SuSE Linux 8.1 Professional
Posts: 23

Rep: Reputation: 15
mount /dev/fd0 is not a valid block device


I keep getting
mount /dev/fd0 is not a valid block device
when I try mount my floppy ... the floppy drive works
when I am running windows xp on the same box.
None of the other posts helped me.

cheers
Scott
 
Old 11-26-2002, 08:57 PM   #2
rshaw
Senior Member
 
Registered: Apr 2001
Location: Perry, Iowa
Distribution: Mepis , Debian
Posts: 2,692

Rep: Reputation: 45
try mount /media/floppy
 
Old 11-26-2002, 11:07 PM   #3
Hitokiri_X
Member
 
Registered: Mar 2002
Distribution: Slackware Current
Posts: 99

Rep: Reputation: 15
Are you trying to mount a floppy after formatting it? If so,you need to create a filesystem on it,man mke2fs.Is your floppy set to auto in /etc/fstab?

Last edited by Hitokiri_X; 11-26-2002 at 11:13 PM.
 
Old 11-27-2002, 12:51 PM   #4
jolly_good2000
LQ Newbie
 
Registered: Nov 2002
Distribution: SuSE Linux 8.1 Professional
Posts: 23

Original Poster
Rep: Reputation: 15
try mount /media/floppy DOES NOT WORK

try mount /media/floppy DOES NOT WORK
I still get /dev/fd0 is not a valid block device

I looked in /etc/fstab and saw the following but don't know
what it means. I have not done any formatting. I can not even
cd /dev/fd0...
/dev/fd0 /media/floppy auto noauto,user,sync 0 0

cheers
scott
 
Old 11-28-2002, 10:27 AM   #5
boy
LQ Newbie
 
Registered: Nov 2002
Posts: 6

Rep: Reputation: 0
try mount /media/floppy DOES NOT WORK
I still get /dev/fd0 is not a valid block device

I looked in /etc/fstab and saw the following but don't know
what it means. I have not done any formatting. I can not even
cd /dev/fd0...
/dev/fd0 /media/floppy auto noauto,user,sync 0 0


i am a newbie to linux too, i don't know what the error msg mean
but i do know what the entries in fstab mean

/dev/fd0 - the device, i used the same one for my floppy

/media/floppy - is the directory you are mounting to, make sure this directory exists

auto - is the 3rd entry which specifies the file system type, leave it as it is for floppy

noauto,user,sync - is some mount options, noauto says that this device is not mounted automatically when linux boots

the last 2 entries " 0 0 ", just leave it as it is
 
Old 06-18-2003, 10:08 AM   #6
serveicecold
LQ Newbie
 
Registered: Jun 2003
Location: London, UK
Posts: 2

Rep: Reputation: 0
Talking

Dude, make sure the floppy is in the drive when you run the command
mount /mnt/floppy

also remember, when you have finished using the floppy to close any open files and cd to another directory and unmount the floppy with

umount /mnt/floppy

keep trying.....
 
Old 06-19-2003, 03:31 AM   #7
Anthony_Pak
LQ Newbie
 
Registered: Jun 2003
Location: Malaysia - Kuantan
Posts: 7

Rep: Reputation: 0
I have the same problem once I install my Redhat 8.0. I don't have floppy but only CD-ROM and CD-RW. My floppy doesn't exist.
And I also follow the advices from here. But failed. It said it cannot mount, or no media, even I insect my floppy.

I really need helps! Please.
 
Old 06-19-2003, 04:31 AM   #8
serveicecold
LQ Newbie
 
Registered: Jun 2003
Location: London, UK
Posts: 2

Rep: Reputation: 0
Anthony, what is it that you are trying to do?
 
Old 06-21-2003, 01:46 PM   #9
Anthony_Pak
LQ Newbie
 
Registered: Jun 2003
Location: Malaysia - Kuantan
Posts: 7

Rep: Reputation: 0
To access my floppy drive!
 
Old 06-21-2003, 02:37 PM   #10
masand
LQ Guru
 
Registered: May 2003
Location: INDIA
Distribution: Ubuntu, Solaris,CentOS
Posts: 5,522

Rep: Reputation: 69
is the device ur accessing fdo only,i also had the problem with my hdd,i tried /dev/hda instead it was /dev/hdb ie it was primary slave
 
Old 06-22-2003, 02:38 AM   #11
Anthony_Pak
LQ Newbie
 
Registered: Jun 2003
Location: Malaysia - Kuantan
Posts: 7

Rep: Reputation: 0
Wasn't there should be /dev/hda1 or /dev/hda2 ?
The problem is, once I installed my Redhat linux 8.0, it don't have floppy installed. Then I have to figure out how to access the floppy. But I 'm a newbie. So I don't know how. I know how to access my Windows XP C: D: E: F: and G:. But I don't know how to get my floppy.
 
Old 06-22-2003, 03:05 AM   #12
ksoma
Member
 
Registered: Jun 2003
Location: Austin,TX most of the year...in Euless,TX the rest of it
Distribution: RH 9.0
Posts: 154

Rep: Reputation: 30
I'm not sure exactly what command you typed in to try and mount your floppy...but this is how I mount mine:

1)Login as root
2) type in cd /mnt to go to your mnt directory
3) type in "ls"(w/o the quotes...this lists the directories and/or files under /mnt)
4)if you dont see a directory called "floppy".....make this directory by performing this command---> mkdir floppy
5)Now try this command --> mount /dev/fd0 /mnt/floppy(this command specifies the device-name and then the mount point, in other words, it puts whatever is on your floppy in the directory /mnt/floppy
6) Look in the /mnt/floppy directory and see if whatever is on your floppy is in the directory...use the "ls" command to do this

I'm assuming that type of error message you got comes up when the floppy isn't in the drive....Another place to look regarding your floppy drive is going to the /etc/fstab file.....just do a "cd /etc"....then a "vi fstab"(w/o the quotes)....look in there and see if you see something like this....

/dev/fd0 /mnt/floppy auto noauto,owner,kudzu 0 0

If you see that, your floppy has already been recognized and your problem is with the command that you are executing when trying to mount the floppy. Well, good luck with it...post if you have any more questions regarding what I said above..hopefully this helped out.

-Keerthan
 
Old 07-31-2003, 07:27 AM   #13
semicontuxtor
LQ Newbie
 
Registered: Jul 2003
Distribution: Suse Pro 8.2
Posts: 1

Rep: Reputation: 0
dur.................how humbling

Although, if you dual boot, and the drive works fine in windoze, you wouldn't have the same problem as I had minutes ago, I post my solution anyway.

It seems the "not a valid block device" error can result from having the drive plugged in backwards....whoops!

Although I am no computer guru, and new to Linux, I was not the fool this infernal machine was making me out to be.

So, if you find yourself, like me, wrestling with an uncooperative floppy in the wee hours of the morning....grab a screwdriver and make sure the colored side of the connecting ribbon is aligned to the same number on the mobo and the drive.

Yikes, I burned the midnight oil on this blunder, time for bed!
 
  


Reply


Thread Tools Search this Thread
Search this Thread:

Advanced Search

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is Off
HTML code is Off



Similar Threads
Thread Thread Starter Forum Replies Last Post
mount:/dev/fd0 is not a valid block device yat Linux - General 2 11-26-2010 12:45 PM
Post subject: mount /dev/fd0 is not a valid block device lil_becky Debian 3 05-16-2008 03:25 PM
/dev/fd0 is not a valid block device intmail Slackware 2 07-21-2005 07:52 AM
mount: /dev/fd0 is not a valid block device natsudarshan Linux - Newbie 5 09-23-2004 04:13 PM
/dev/fd0 is not a valid block device allnight Linux - General 7 02-21-2002 09:42 PM

LinuxQuestions.org > Forums > Linux Forums > Linux - Hardware

All times are GMT -5. The time now is 09:27 PM.

Main Menu
Advertisement
My LQ
Write for LQ
LinuxQuestions.org is looking for people interested in writing Editorials, Articles, Reviews, and more. If you'd like to contribute content, let us know.
Main Menu
Syndicate
RSS1  Latest Threads
RSS1  LQ News
Twitter: @linuxquestions
Open Source Consulting | Domain Registration