aboutsummaryrefslogtreecommitdiffstats
path: root/appendixa/modutils-desc.sgml
diff options
context:
space:
mode:
authorGerard Beekmans <gerard@linuxfromscratch.org>2001-01-24 00:31:17 +0000
committerGerard Beekmans <gerard@linuxfromscratch.org>2001-01-24 00:31:17 +0000
commit6370fa6cff0ec2a8ac8d50d1595ec9500f6631c9 (patch)
treeb17c8cb0a839b76f4a7db0f771953caa11c3a04e /appendixa/modutils-desc.sgml
parent5c930fe6eb43d23cfa0de2451d9a905a8505f981 (diff)
Initial commit - LFS 2.4.4 files
git-svn-id: http://svn.linuxfromscratch.org/LFS/trunk/BOOK@14 4aa44e1e-78dd-0310-a6d2-fbcd4c07a689
Diffstat (limited to 'appendixa/modutils-desc.sgml')
-rw-r--r--appendixa/modutils-desc.sgml109
1 files changed, 109 insertions, 0 deletions
diff --git a/appendixa/modutils-desc.sgml b/appendixa/modutils-desc.sgml
new file mode 100644
index 000000000..cf0fb85fe
--- /dev/null
+++ b/appendixa/modutils-desc.sgml
@@ -0,0 +1,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>
+