How to unload kernel module
Hello,
I need to unload a kernel module which has a very long name (stap8983664890.....).
The command that I should use is modprobe -r <kernel_module_name>
in my case, the name of the module is very long (and includes random characters). It is impossible to type all the characters because it takes time and it's error prone.
I tried with
modprobe -r | lsmod | grep "stap*"
(the name starts with "stap") but it didn't work.
Thank you in advance.
|