mirror of
https://github.com/ivuorinen/cheatsheet-tldr.git
synced 2026-01-26 11:33:59 +00:00
15 lines
307 B
Plaintext
15 lines
307 B
Plaintext
---
|
|
syntax: markdown
|
|
tags: [tldr, linux]
|
|
source: https://github.com/tldr-pages/tldr.git
|
|
---
|
|
# insmod
|
|
|
|
> Dynamically load modules into the Linux Kernel.
|
|
> See also: `kmod`.
|
|
> More information: <https://manned.org/insmod>.
|
|
|
|
- Insert a kernel module into the Linux kernel:
|
|
|
|
`sudo insmod {{path/to/module.ko}}`
|