blob: 3c7e15ed1f8b5fc51117cb4c80489751ddc49d37 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
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)
|