Added a few comments here and there
[linux_from_scratch.git] / BOOK / appendixa / modutils-desc.xml
blob4209b166d017aa30adc9e16f1c99ae9764d5f3b0
1 <sect2><title>Short descriptions</title>
3 <para><command>depmod</command> creates a dependency file, based on the
4 symbols it finds in the existing set of modules. This dependency file is used
5 by modprobe to automatically load the required modules.</para>
7 <para><command>genksyms</command> generates symbol version information.</para>
9 <para><command>insmod</command> installs a loadable module in the running kernel.</para>
11 <para><command>insmod_ksymoops_clean</command> deletes saved ksyms and
12 modules not accessed for two days.</para>
14 <para><command>kallsyms</command> extracts all kernel symbols for debugging.</para>
16 <para><command>kernelversion</command> reports the major version of the
17 running kernel.</para>
19 <para><command>ksyms</command> displays exported kernel symbols.</para>
21 <para><command>lsmod</command> shows which modules are loaded.</para>
23 <para><command>modinfo</command> examines an object file associated with
24 a kernel module and displays any information that it can glean.</para>
26 <para><command>modprobe</command> uses a dependency file, created by
27 depmod, to automatically load the relevant modules.</para>
29 <para><command>rmmod</command> unloads modules from the running kernel.</para>
31 </sect2>