mirror of
https://git.kernel.org/pub/scm/utils/kernel/kmod/kmod.git
synced 2024-12-04 09:13:41 +08:00
6923e95b66
- Gah, kmod insmod can't load from stdin anymore. :/ - What's the use case? - zcat module.ko.gz | insmod - (but the new insmod apparently can load .gz fine) - yes... just insmod module.ko.gz - and actually insmod(8) says it works. :) Not anymore...
85 lines
2.5 KiB
XML
85 lines
2.5 KiB
XML
<?xml version='1.0'?>
|
|
<!--*-nxml-*-->
|
|
<!DOCTYPE refentry PUBLIC "-//OASIS//DTD DocBook XML V4.2//EN"
|
|
"http://www.oasis-open.org/docbook/xml/4.2/docbookx.dtd">
|
|
<refentry id="insmod">
|
|
<refentryinfo>
|
|
<title>insmod</title>
|
|
<productname>kmod</productname>
|
|
|
|
<authorgroup>
|
|
<author>
|
|
<contrib>Developer</contrib>
|
|
<firstname>Jon</firstname>
|
|
<surname>Masters</surname>
|
|
<email>jcm@jonmasters.org</email>
|
|
</author>
|
|
<author>
|
|
<contrib>Developer</contrib>
|
|
<firstname>Lucas</firstname>
|
|
<surname>De Marchi</surname>
|
|
<email>lucas.demarchi@profusion.mobi</email>
|
|
</author>
|
|
</authorgroup>
|
|
</refentryinfo>
|
|
|
|
<refmeta>
|
|
<refentrytitle>insmod</refentrytitle>
|
|
<manvolnum>8</manvolnum>
|
|
</refmeta>
|
|
|
|
<refnamediv>
|
|
<refname>insmod</refname>
|
|
<refpurpose>
|
|
Simple program to insert a module into the Linux Kernel
|
|
</refpurpose>
|
|
</refnamediv>
|
|
|
|
<refsynopsisdiv>
|
|
<cmdsynopsis>
|
|
<command>insmod</command>
|
|
<arg><replaceable>filename</replaceable></arg>
|
|
<arg rep='repeat'><replaceable>module options</replaceable></arg>
|
|
</cmdsynopsis>
|
|
</refsynopsisdiv>
|
|
|
|
<refsect1><title>DESCRIPTION</title>
|
|
<para>
|
|
<command>insmod</command> is a trivial program to insert a module into
|
|
the kernel. Most users will want to use
|
|
<citerefentry><refentrytitle>modprobe</refentrytitle>
|
|
<manvolnum>8</manvolnum> </citerefentry> instead, which is more clever
|
|
and can handle module dependencies.
|
|
</para>
|
|
<para>
|
|
Only the most general of error messages are reported: as the work of
|
|
trying to link the module is now done inside the kernel, the
|
|
<command>dmesg</command> usually gives more information about errors.
|
|
</para>
|
|
</refsect1>
|
|
|
|
<refsect1><title>COPYRIGHT</title>
|
|
<para>
|
|
This manual page originally Copyright 2002, Rusty Russell, IBM
|
|
Corporation. Maintained by Jon Masters and others.
|
|
</para>
|
|
</refsect1>
|
|
|
|
<refsect1><title>SEE ALSO</title>
|
|
<para>
|
|
<citerefentry>
|
|
<refentrytitle>modprobe</refentrytitle><manvolnum>8</manvolnum>
|
|
</citerefentry>,
|
|
<citerefentry>
|
|
<refentrytitle>rmmod</refentrytitle><manvolnum>8</manvolnum>
|
|
</citerefentry>,
|
|
<citerefentry>
|
|
<refentrytitle>lsmod</refentrytitle><manvolnum>8</manvolnum>
|
|
</citerefentry>
|
|
<citerefentry>
|
|
<refentrytitle>modinfo</refentrytitle><manvolnum>8</manvolnum>
|
|
</citerefentry>
|
|
</para>
|
|
</refsect1>
|
|
</refentry>
|