2021-10-21 03:32:47 +01:00
|
|
|
# rmmod
|
|
|
|
|
|
|
|
> Remove modules from the Linux kernel.
|
|
|
|
> More information: <https://manned.org/rmmod>.
|
|
|
|
|
|
|
|
- Remove a module from the kernel:
|
|
|
|
|
2022-03-19 18:28:29 +00:00
|
|
|
`sudo rmmod {{module_name}}`
|
2021-10-21 03:32:47 +01:00
|
|
|
|
|
|
|
- Remove a module from the kernel and display verbose information:
|
|
|
|
|
2022-03-19 18:28:29 +00:00
|
|
|
`sudo rmmod --verbose {{module_name}}`
|
2021-10-21 03:32:47 +01:00
|
|
|
|
|
|
|
- Remove a module from the kernel and send errors to syslog instead of standard error:
|
|
|
|
|
2022-03-19 18:28:29 +00:00
|
|
|
`sudo rmmod --syslog {{module_name}}`
|
2021-10-21 03:32:47 +01:00
|
|
|
|
|
|
|
- Display help:
|
|
|
|
|
2022-03-19 18:28:29 +00:00
|
|
|
`rmmod --help`
|
2021-10-21 03:32:47 +01:00
|
|
|
|
|
|
|
- Display version:
|
|
|
|
|
2022-03-19 18:28:29 +00:00
|
|
|
`rmmod --version`
|