/
githubmirror
/
kmod
Обзор
Документация
Войти
/
githubmirror
/
kmod
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
man/insmod.8.scd
60 строк
2 KB
Emil Velikov
man: remove outdated COPYRIGHT section
03 фев 2026, 07:59
03 фев 2026, 07:59
cee17b5
Код
Авторство
О чём код?
INSMOD(8) "kmod" "insmod" # NAME insmod - Simple program to insert a module into the Linux Kernel # SYNOPSIS *insmod* [_OPTIONS_] _filename_ [_module options_] # DESCRIPTION *insmod* is a trivial program to insert a module into the kernel. Most users will want to use *modprobe*(8) instead, which is more clever and can handle module dependencies. 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 *dmesg*(1) usually gives more information about errors. # OPTIONS *-f*, *--force* This option can be extremely dangerous: it tells the kernel to ignore the module version and vermagic fields when loading. With this option, you can load modules build locally or by third parties, although this can lead to memory corruption, system crashes and data loss. This is the same as using both *--force-vermagic* and *--force-modversion*. *--force-modversion* When modules are compiled with CONFIG_MODVERSIONS set, a section detailing the versions of every interfaced used by (or supplied by) the module is created. If a module fails to load and the kernel complains that the module disagrees about a version of some interface, you can use *--force-modversion* to remove the version information altogether. *--force-vermagic* Every module contains a small string containing important information, such as the kernel and compiler versions. If a module fails to load and the kernel complains that the "version magic" doesn't match, you can use this option to remove it. Naturally, this check is there for your protection, so using this option is dangerous unless you know what you're doing. *-s*, *--syslog* Send errors to syslog instead of standard error. *-v*, *--verbose* Print messages about what the program is doing. Usually *insmod* prints messages only if something goes wrong. *-V*, *--version* Show version of program and exit. *-h*, *--help* Print the help message and exit. # SEE ALSO *modprobe*(8), *rmmod*(8), *lsmod*(8), *modinfo*(8), *depmod*(8)