Книга: Embedded Linux Primer: A Practical, Real-World Approach

8.2.3. lsmod

8.2.3. lsmod

The lsmod utility is also quite trivial. It simply displays a formatted list of the modules that are inserted into the kernel. Recent versions take no parameters and simply format the output of /proc/modules.[65] Listing 8-7 is an example of the output from lsmod.

Listing 8-7. lsmod Example Output Format

$ lsmod
Module                 Size  Used by
ext3                  121096  0
jbd                    49656  1 ext3
loop                   12712  0
hello1                  1412  0
$

Notice the rightmost column labeled Used by. This column indicates that the device driver module is in use and shows the dependency chain. In this example, the jbd module (journaling routines for journaling file systems) is being used by the ext3 module, the default journaling file system for many popular Linux desktop distributions. This means that the ext3 device driver depends on the presence of jbd.

Оглавление книги


Генерация: 1.641. Запросов К БД/Cache: 3 / 0
поделиться
Вверх Вниз