1
0
Fork 0
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:
Lena 2025-01-19 18:29:56 +01:00 committed by GitHub
parent 363176202c
commit 5d9681da44
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
6 changed files with 20 additions and 2 deletions

View file

@ -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
View 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`

View file

@ -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:

View file

@ -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:

View file

@ -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:

View file

@ -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: