Base: Describe kernel modules, syscalls, and programs

This commit is contained in:
Conrad Pankoff 2019-12-24 14:10:39 +11:00 committed by Andreas Kling
commit 033de7efe2
Notes: sideshowbarker 2024-07-19 10:42:46 +09:00
5 changed files with 181 additions and 0 deletions

View file

@ -0,0 +1,25 @@
## Name
modunload - unload a kernel module
## Synopsis
```**sh
$ modunload <name>
```
## Description
Unload a kernel module specified by *name*.
## Examples
```sh
$ modunload TestModule
```
## See also
* [`modload`(1)](modload.md)
* [`module_unload`(2)](../man2/module_unload.md)
* [`kernel_modules`(7)](../man7/kernel_modules.md)