mirror of
https://github.com/tldr-pages/tldr.git
synced 2025-07-23 04:35:25 +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
|
||||
|
||||
> Dynamically load modules into the Linux Kernel.
|
||||
> See also: `kmod`, for other module management commands.
|
||||
> More information: <https://manned.org/insmod>.
|
||||
|
||||
- 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
|
||||
|
||||
> Shows the status of Linux kernel modules.
|
||||
> See also `modprobe`, which loads kernel modules.
|
||||
> Show the status of Linux kernel modules.
|
||||
> See also: `kmod`, for other module management commands.
|
||||
> More information: <https://manned.org/lsmod>.
|
||||
|
||||
- List all currently loaded kernel modules:
|
||||
|
|
|
@ -1,6 +1,7 @@
|
|||
# modinfo
|
||||
|
||||
> Extract information about a Linux kernel module.
|
||||
> See also: `kmod`, for other module management commands.
|
||||
> More information: <https://manned.org/modinfo>.
|
||||
|
||||
- List all attributes of a kernel module:
|
||||
|
|
|
@ -1,6 +1,7 @@
|
|||
# modprobe
|
||||
|
||||
> Add or remove modules from the Linux kernel.
|
||||
> See also: `kmod`, for other module management commands.
|
||||
> More information: <https://manned.org/modprobe>.
|
||||
|
||||
- Pretend to load a module into the kernel, but don't actually do it:
|
||||
|
|
|
@ -1,6 +1,7 @@
|
|||
# rmmod
|
||||
|
||||
> Remove modules from the Linux kernel.
|
||||
> See also: `kmod`, for other module management commands.
|
||||
> More information: <https://manned.org/rmmod>.
|
||||
|
||||
- Remove a module from the kernel:
|
||||
|
|
Loading…
Add table
Reference in a new issue