From 5d9681da44bd9de34f078afbe8a180debc31e048 Mon Sep 17 00:00:00 2001 From: Lena <126529524+acuteenvy@users.noreply.github.com> Date: Sun, 19 Jan 2025 18:29:56 +0100 Subject: [PATCH] kmod: add page, *mod*: add 'See also' (#15545) --- pages/linux/insmod.md | 1 + pages/linux/kmod.md | 14 ++++++++++++++ pages/linux/lsmod.md | 4 ++-- pages/linux/modinfo.md | 1 + pages/linux/modprobe.md | 1 + pages/linux/rmmod.md | 1 + 6 files changed, 20 insertions(+), 2 deletions(-) create mode 100644 pages/linux/kmod.md diff --git a/pages/linux/insmod.md b/pages/linux/insmod.md index 4df3c2e0b4..e880c58b2f 100644 --- a/pages/linux/insmod.md +++ b/pages/linux/insmod.md @@ -1,6 +1,7 @@ # insmod > Dynamically load modules into the Linux Kernel. +> See also: `kmod`, for other module management commands. > More information: . - Insert a kernel module into the Linux kernel: diff --git a/pages/linux/kmod.md b/pages/linux/kmod.md new file mode 100644 index 0000000000..b7e6be8fea --- /dev/null +++ b/pages/linux/kmod.md @@ -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: . + +- 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` diff --git a/pages/linux/lsmod.md b/pages/linux/lsmod.md index 9f94f6d34d..28b06655a6 100644 --- a/pages/linux/lsmod.md +++ b/pages/linux/lsmod.md @@ -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: . - List all currently loaded kernel modules: diff --git a/pages/linux/modinfo.md b/pages/linux/modinfo.md index b248545d74..38016f112f 100644 --- a/pages/linux/modinfo.md +++ b/pages/linux/modinfo.md @@ -1,6 +1,7 @@ # modinfo > Extract information about a Linux kernel module. +> See also: `kmod`, for other module management commands. > More information: . - List all attributes of a kernel module: diff --git a/pages/linux/modprobe.md b/pages/linux/modprobe.md index fe991cf3cc..a7f58ae533 100644 --- a/pages/linux/modprobe.md +++ b/pages/linux/modprobe.md @@ -1,6 +1,7 @@ # modprobe > Add or remove modules from the Linux kernel. +> See also: `kmod`, for other module management commands. > More information: . - Pretend to load a module into the kernel, but don't actually do it: diff --git a/pages/linux/rmmod.md b/pages/linux/rmmod.md index 2af866a4ec..15c9e37f36 100644 --- a/pages/linux/rmmod.md +++ b/pages/linux/rmmod.md @@ -1,6 +1,7 @@ # rmmod > Remove modules from the Linux kernel. +> See also: `kmod`, for other module management commands. > More information: . - Remove a module from the kernel: