- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - Linux
- >
- Re: kmod:failed to exec /sbin/modprobe
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
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
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-17-2004 09:17 PM
02-17-2004 09:17 PM
During the boot process I get the following message: kmod: failed to exec /sbin/modprobe -s -k scsl hostadapter, error=2.
What does this mean? Is it dangerous?
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-17-2004 10:13 PM
02-17-2004 10:13 PM
Re: kmod:failed to exec /sbin/modprobe
error 2 means that the file doesn't exist. See if you actually have a "modprobe" in /sbin.
If you don't, it means you haven't installed a package that perhaps you should have.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-17-2004 10:15 PM
02-17-2004 10:15 PM
Re: kmod:failed to exec /sbin/modprobe
Did you go for a default install?
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-18-2004 02:01 AM
02-18-2004 02:01 AM
Re: kmod:failed to exec /sbin/modprobe
Regarding inetd.conf. I do have inetd.conf. The problem relates to the inetd start deamon. But, I think we're already handling that on the other thread.
I didn't do the original installation, so I don't know what kind of an install they did. I was called in after the fact. Can you tell me a bit more about the default install. Could that have had an influence?
Thanks for keeping track.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-18-2004 02:07 AM
02-18-2004 02:07 AM
Re: kmod:failed to exec /sbin/modprobe
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-18-2004 02:24 AM
02-18-2004 02:24 AM
Re: kmod:failed to exec /sbin/modprobe
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-18-2004 02:41 AM
02-18-2004 02:41 AM
Solutioninetd is a process that starts up applications when needed. It looks through /etc/services to see what network ports to listen on. If someone connects to one of these ports, inetd starts up the corresponding application specified in /etc/inetd.conf to handle the request. However, it is perfectly possible to have most of these applications running on there own. Most of the time they will do nothing except listen for a connection and then they will do their stuff.
To illustrate what I mean. If you have a machine running apache that only expects about 3 or 4 connections a day, it is better to have inetd start it when needed, thus reducing the general load on the system. However, if that same system handles hundreds of connections a day, the system would be constantly starting up apache thus slowing the system down. That's why most people don't put apache in /etc/inetd.conf, they just start it up at boot time and let it sit their listening for connection itself.
Also, inetd has absolutely nothing to do with outgoing connections so you can help security by shutting it down, thus stopping all sorts of services from being active. My machine at home does not start inetd for this very reason.