Error "FATAL: Module llt not found." when attempting to load the llt module into the kernel

book

Article ID: 100024176

calendar_today

Updated On:

Description

Error Message

# modprobe llt
FATAL: Module llt not found.

Resolution

After searching the contents of /lib/modules/`uname -r`/modules.dep for llt, the relevant entry is missing:

# grep llt /lib/modules/`uname -r`/modules.dep
#

To resolve, execute depmod to recreate the module dependencies list.

For example:

# depmod

# ls -lh /lib/modules/2.6.18-128.el5/modules.dep
-rw-r--r-- 1 root root 200K Apr 21 10:39 /lib/modules/2.6.18-128.el5/modules.dep

# grep llt /lib/modules/`uname -r`/modules.dep
/lib/modules/2.6.18-128.el5/veritas/vcs/gab.ko: /lib/modules/2.6.18-128.el5/veritas/vcs/llt.ko
/lib/modules/2.6.18-128.el5/veritas/vcs/llt.ko:
/lib/modules/2.6.18-128.el5/veritas/vcs/vxfen.ko: /lib/modules/2.6.18-128.el5/veritas/vcs/gab.ko /lib/modules/2.6.18-128.el5/veritas/vcs/llt.ko

# modprobe llt

Issue/Introduction

Error "FATAL: Module llt not found." when attempting to load the llt module into the kernel via modprobe