- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - Linux
- >
- RedHat Linux - Disable floppy driver/module
Categories
Company
Local Language
Forums
Discussions
Forums
- Data Protection and Retention
- Entry Storage Systems
- Legacy
- Midrange and Enterprise Storage
- Storage Networking
- HPE Nimble Storage
Discussions
Forums
Discussions
Discussions
Discussions
Forums
Forums
Discussions
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
- BladeSystem Infrastructure and Application Solutions
- Appliance Servers
- Alpha Servers
- BackOffice Products
- Internet Products
- HPE 9000 and HPE e3000 Servers
- Networking
- Netservers
- Secure OS Software for Linux
- Server Management (Insight Manager 7)
- Windows Server 2003
- Operating System - Tru64 Unix
- ProLiant Deployment and Provisioning
- Linux-Based Community / Regional
- Microsoft System Center Integration
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Community
Resources
Forums
Blogs
- Subscribe to RSS Feed
- Mark Topic as New
- Mark Topic as Read
- Float this Topic for Current User
- Bookmark
- Subscribe
- Printer Friendly Page
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО02-27-2007 02:00 AM
тАО02-27-2007 02:00 AM
Feb 26 10:49:18 dbqldap1 kernel: Floppy drive(s): fd0 is 1.44M
Feb 26 10:49:21 dbqldap1 kernel: floppy0: no floppy controllers found
Feb 26 10:49:21 dbqldap1 insmod: /lib/modules/2.4.21-27.ELsmp/kernel/drivers/block/floppy.o: init_module: No such device
Feb 26 10:49:21 dbqldap1 insmod: /lib/modules/2.4.21-27.ELsmp/kernel/drivers/block/floppy.o: insmod block-major-2 failed
Feb 26 10:49:21 dbqldap1 kernel: inserting floppy driver for 2.4.21-27.ELsmp
Feb 26 10:49:21 dbqldap1 kernel: Floppy drive(s): fd0 is 1.44M
Feb 26 10:49:24 dbqldap1 kernel: floppy0: no floppy controllers found
Feb 26 10:49:24 dbqldap1 insmod: /lib/modules/2.4.21-27.ELsmp/kernel/drivers/block/floppy.o: init_module: No such device
Feb 26 10:49:24 dbqldap1 insmod: /lib/modules/2.4.21-27.ELsmp/kernel/drivers/block/floppy.o: insmod block-major-2 failed
The floppy drive isn't listed in /etc/modules.conf or /etc/fstab and "modprobe -r floppy" doesn't seem to do anything.
modprobe -l | grep floppy
/lib/modules/2.4.21-27.ELsmp/kernel/drivers/block/floppy.o
Does anyone know how to remove or disable the floppy drivers/modules so that I don't see these messages?
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО02-27-2007 07:01 AM
тАО02-27-2007 07:01 AM
Re: RedHat Linux - Disable floppy driver/module
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО02-27-2007 09:54 AM
тАО02-27-2007 09:54 AM
Re: RedHat Linux - Disable floppy driver/module
install floppy /bin/true
This should stop the module from being loaded, and do it silently.
Use '/bin/false' if you want an error (FATAL: Error running install command for floppy) to show up.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО02-27-2007 07:36 PM
тАО02-27-2007 07:36 PM
SolutionIt probably does not have /etc/modprobe.conf, as the module tools were slightly different before the 2.6 kernel series.
The correct file is /etc/modules.conf.
Add to it a line:
alias floppy off
and run "depmod -a" after modifying the file (it normally gets run automatically when the system is rebooted, but running it manually is a good check to ensure you didn't make any typos).
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО02-28-2007 03:13 AM
тАО02-28-2007 03:13 AM
Re: RedHat Linux - Disable floppy driver/module
Thanks again