blob: cf0fb85fec334ce5ad9cf8306c4c53f836f1d7b7 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
|
<sect2>
<title>Contents</title>
<para>
The Modutils package contains the depmod, genksyms, insmod,
insmod_ksymoops_clean, kerneld, kernelversion, ksyms, lsmod, modinfo,
modprobe and rmmod programs.
</para>
</sect2>
<sect2><title>Description</title>
<sect3><title>depmod</title>
<para>
depmod handles dependency descriptions for loadable kernel modules.
</para>
</sect3>
<sect3><title>genksyms</title>
<para>
genksyms reads (on standard input) the output from gcc -E source.c
and generates a file containing version information.
</para>
</sect3>
<sect3><title>insmod</title>
<para>
insmod installs a loadable module in the running kernel.
</para>
</sect3>
<sect3><title>insmod_ksymoops_clean</title>
<para>
insmod_ksymoops_clean deletes saved ksyms and modules not accessed in
2 days.
</para>
</sect3>
<sect3><title>kerneld</title>
<para>
kerneld performs kernel action in user space (such as on-demand loading of
modules)
</para>
</sect3>
<sect3><title>kernelversion</title>
<para>
kernelversion reports the major version of the running kernel.
</para>
</sect3>
<sect3><title>ksyms</title>
<para>
ksyms displays exported kernel symbols.
</para>
</sect3>
<sect3><title>lsmod</title>
<para>
lsmod shows information about all loaded modules.
</para>
</sect3>
<sect3><title>modinfo</title>
<para>
modinfo examines an object file associated with a kernel module and
displays any information that it can glean.
</para>
</sect3>
<sect3><title>modprobe</title>
<para>
Modprobe uses a Makefile-like dependency file, created by depmod,
to automatically load the relevant module(s) from the set of modules
available in predefined directory trees.
</para>
</sect3>
<sect3><title>rmmod</title>
<para>
rmmod unloads loadable modules from the running kernel.
</para>
</sect3>
</sect2>
|