Forrest logo
back to context overview

modprobe

List of commands for modprobe:

  • modprobe:tldr:19a13 modprobe: Load a module into the kernel.
    $ sudo modprobe ${module_name}
    try on your machine
    explain this command
  • modprobe:tldr:61685 modprobe: Show a kernel module's dependencies.
    $ sudo modprobe --show-depends ${module_name}
    try on your machine
    explain this command
  • modprobe:tldr:d1e34 modprobe: Remove a module and those that depend on it from the kernel.
    $ sudo modprobe --remove-dependencies ${module_name}
    try on your machine
    explain this command
  • modprobe:tldr:fb3d0 modprobe: Remove a module from the kernel.
    $ sudo modprobe --remove ${module_name}
    try on your machine
    explain this command
back to context overview