mirror of
https://github.com/tldr-pages/tldr.git
synced 2025-08-04 20:55:34 +02:00
kmod: add page, *mod*: add 'See also' (#15545)
This commit is contained in:
parent
363176202c
commit
5d9681da44
6 changed files with 20 additions and 2 deletions
|
@ -1,6 +1,7 @@
|
||||||
# insmod
|
# insmod
|
||||||
|
|
||||||
> Dynamically load modules into the Linux Kernel.
|
> Dynamically load modules into the Linux Kernel.
|
||||||
|
> See also: `kmod`, for other module management commands.
|
||||||
> More information: <https://manned.org/insmod>.
|
> More information: <https://manned.org/insmod>.
|
||||||
|
|
||||||
- Insert a kernel module into the Linux kernel:
|
- Insert a kernel module into the Linux kernel:
|
||||||
|
|
14
pages/linux/kmod.md
Normal file
14
pages/linux/kmod.md
Normal file
|
@ -0,0 +1,14 @@
|
||||||
|
# kmod
|
||||||
|
|
||||||
|
> Manage Linux kernel modules.
|
||||||
|
> This program is usually called via its symlinks: `lsmod`, `rmmod`, `insmod`, `modinfo`, `modprobe`, and `depmod`.
|
||||||
|
> See their respective pages for more information.
|
||||||
|
> More information: <https://manned.org/kmod>.
|
||||||
|
|
||||||
|
- List currently loaded kernel modules:
|
||||||
|
|
||||||
|
`kmod list`
|
||||||
|
|
||||||
|
- Display the static device nodes information provided by the modules of the currently running kernel:
|
||||||
|
|
||||||
|
`kmod static-nodes`
|
|
@ -1,7 +1,7 @@
|
||||||
# lsmod
|
# lsmod
|
||||||
|
|
||||||
> Shows the status of Linux kernel modules.
|
> Show the status of Linux kernel modules.
|
||||||
> See also `modprobe`, which loads kernel modules.
|
> See also: `kmod`, for other module management commands.
|
||||||
> More information: <https://manned.org/lsmod>.
|
> More information: <https://manned.org/lsmod>.
|
||||||
|
|
||||||
- List all currently loaded kernel modules:
|
- List all currently loaded kernel modules:
|
||||||
|
|
|
@ -1,6 +1,7 @@
|
||||||
# modinfo
|
# modinfo
|
||||||
|
|
||||||
> Extract information about a Linux kernel module.
|
> Extract information about a Linux kernel module.
|
||||||
|
> See also: `kmod`, for other module management commands.
|
||||||
> More information: <https://manned.org/modinfo>.
|
> More information: <https://manned.org/modinfo>.
|
||||||
|
|
||||||
- List all attributes of a kernel module:
|
- List all attributes of a kernel module:
|
||||||
|
|
|
@ -1,6 +1,7 @@
|
||||||
# modprobe
|
# modprobe
|
||||||
|
|
||||||
> Add or remove modules from the Linux kernel.
|
> Add or remove modules from the Linux kernel.
|
||||||
|
> See also: `kmod`, for other module management commands.
|
||||||
> More information: <https://manned.org/modprobe>.
|
> More information: <https://manned.org/modprobe>.
|
||||||
|
|
||||||
- Pretend to load a module into the kernel, but don't actually do it:
|
- Pretend to load a module into the kernel, but don't actually do it:
|
||||||
|
|
|
@ -1,6 +1,7 @@
|
||||||
# rmmod
|
# rmmod
|
||||||
|
|
||||||
> Remove modules from the Linux kernel.
|
> Remove modules from the Linux kernel.
|
||||||
|
> See also: `kmod`, for other module management commands.
|
||||||
> More information: <https://manned.org/rmmod>.
|
> More information: <https://manned.org/rmmod>.
|
||||||
|
|
||||||
- Remove a module from the kernel:
|
- Remove a module from the kernel:
|
||||||
|
|
Loading…
Add table
Reference in a new issue