blob: 1529d350ee0483495e87f7b0eb2f830efad50b88 [file] [log] [blame]
Lucas De Marchid5578ee2012-01-12 13:53:55 -02001<?xml version='1.0'?>
2<!--*-nxml-*-->
3<!DOCTYPE refentry PUBLIC "-//OASIS//DTD DocBook XML V4.2//EN"
4 "http://www.oasis-open.org/docbook/xml/4.2/docbookx.dtd">
5<refentry id="insmod">
6 <refentryinfo>
7 <title>insmod</title>
8 <productname>kmod</productname>
9
10 <authorgroup>
11 <author>
12 <contrib>Developer</contrib>
13 <firstname>Jon</firstname>
14 <surname>Masters</surname>
15 <email>jcm@jonmasters.org</email>
16 </author>
17 <author>
18 <contrib>Developer</contrib>
19 <firstname>Lucas</firstname>
20 <surname>De Marchi</surname>
21 <email>lucas.demarchi@profusion.mobi</email>
22 </author>
23 </authorgroup>
24 </refentryinfo>
25
26 <refmeta>
27 <refentrytitle>insmod</refentrytitle>
28 <manvolnum>8</manvolnum>
29 </refmeta>
30
31 <refnamediv>
32 <refname>insmod</refname>
33 <refpurpose>
34 Simple program to insert a module into the Linux Kernel
35 </refpurpose>
36 </refnamediv>
37
38 <refsynopsisdiv>
39 <cmdsynopsis>
40 <command>insmod</command>
41 <arg><replaceable>filename</replaceable></arg>
42 <arg rep='repeat'><replaceable>module options</replaceable></arg>
43 </cmdsynopsis>
44 </refsynopsisdiv>
45
46 <refsect1><title>DESCRIPTION</title>
47 <para>
48 <command>insmod</command> is a trivial program to insert a module into
49 the kernel: if the <replaceable>filename</replaceable> is a hyphen, the
50 module is taken from standard input. Most users will want to use
51 <citerefentry><refentrytitle>modprobe</refentrytitle>
52 <manvolnum>8</manvolnum> </citerefentry> instead, which is more clever
53 and can handle module dependencies.
54 </para>
55 <para>
56 Only the most general of error messages are reported: as the work of
57 trying to link the module is now done inside the kernel, the
58 <command>dmesg</command> usually gives more information about errors.
59 </para>
60 </refsect1>
61
62 <refsect1><title>COPYRIGHT</title>
63 <para>
64 This manual page originally Copyright 2002, Rusty Russell, IBM
65 Corporation. Maintained by Jon Masters and others.
66 </para>
67 </refsect1>
68
69 <refsect1><title>SEE ALSO</title>
70 <para>
71 <citerefentry>
72 <refentrytitle>modprobe</refentrytitle><manvolnum>8</manvolnum>
73 </citerefentry>,
74 <citerefentry>
75 <refentrytitle>rmmod</refentrytitle><manvolnum>8</manvolnum>
76 </citerefentry>,
77 <citerefentry>
78 <refentrytitle>lsmod</refentrytitle><manvolnum>8</manvolnum>
79 </citerefentry>
80 <citerefentry>
81 <refentrytitle>modinfo</refentrytitle><manvolnum>8</manvolnum>
82 </citerefentry>
83 </para>
84 </refsect1>
85</refentry>