2021-10-20 23:32:47 -03:00
|
|
|
# rmmod
|
|
|
|
|
|
|
|
> Remove modules from the Linux kernel.
|
2025-01-19 18:29:56 +01:00
|
|
|
> See also: `kmod`, for other module management commands.
|
2021-10-20 23:32:47 -03:00
|
|
|
> More information: <https://manned.org/rmmod>.
|
|
|
|
|
|
|
|
- Remove a module from the kernel:
|
|
|
|
|
2022-03-19 11:28:29 -07:00
|
|
|
`sudo rmmod {{module_name}}`
|
2021-10-20 23:32:47 -03:00
|
|
|
|
|
|
|
- Remove a module from the kernel and display verbose information:
|
|
|
|
|
2022-03-19 11:28:29 -07:00
|
|
|
`sudo rmmod --verbose {{module_name}}`
|
2021-10-20 23:32:47 -03:00
|
|
|
|
2023-08-09 07:29:02 +02:00
|
|
|
- Remove a module from the kernel and send errors to syslog instead of `stderr`:
|
2021-10-20 23:32:47 -03:00
|
|
|
|
2022-03-19 11:28:29 -07:00
|
|
|
`sudo rmmod --syslog {{module_name}}`
|
2021-10-20 23:32:47 -03:00
|
|
|
|
|
|
|
- Display help:
|
|
|
|
|
2022-03-19 11:28:29 -07:00
|
|
|
`rmmod --help`
|
2021-10-20 23:32:47 -03:00
|
|
|
|
|
|
|
- Display version:
|
|
|
|
|
2022-03-19 11:28:29 -07:00
|
|
|
`rmmod --version`
|