Linux System Calls Question:

What is stored at /lib/modules?

Tweet Share WhatsApp

Answer:

It contains all the kernel modules that needed to be loaded
into kernel (booting etc). there will some .map, .dep
(dependency files) files present.

When the kernel needs a feature that is not resident in the
kernel, the kernel module daemon kmod[1] execs modprobe to
load the module in.

You can see what modules are already loaded into the kernel
by running lsmod, which gets its information by reading the
file /proc/modules

Download Linux System Calls PDF Read All 35 Linux System Calls Questions
Previous QuestionNext Question
What is atomic function and atomic variable?What is stored in /proc?