modprobe: FATAL: Could not load module

CSF is picking this up, and from Googling it's kernel related, but isn't .dep for Debian? (running on CentOS5). Is this anything I should be worried about?

> Aug 29 16:01:01 li37-46 modprobe: FATAL: Could not load /lib/modules/2.6.24.4-linode8/modules.dep: No such file or directory

Aug 29 16:01:01 li37-46 last message repeated 4 times

2 Replies

These are just warnings. You can ignore them, or run these to lines to quiet down modprobe:

mkdir -p /lib/modules/2.6.24.4-linode8
depmod -a

-Chris

modules.dep is a list of kernel module dependencies. It can't be loaded because it isn't there. It isn't there because you are using Linode's kernel, not the one from your distro.

mkdir /lib/modules/2.6.24.4-linode8 
depmod -a 

should fix it.

Edit: Gah - beaten to it by caker.

Reply

Please enter an answer
Tips:

You can mention users to notify them: @username

You can use Markdown to format your question. For more examples see the Markdown Cheatsheet.

> I’m a blockquote.

I’m a blockquote.

[I'm a link] (https://www.google.com)

I'm a link

**I am bold** I am bold

*I am italicized* I am italicized

Community Code of Conduct