Update cheatsheets

This commit is contained in:
ivuorinen
2025-08-17 00:22:45 +00:00
parent 38ecb2b6c5
commit 42c0c33dde
259 changed files with 1079 additions and 386 deletions

View File

@@ -11,7 +11,7 @@ source: https://github.com/tldr-pages/tldr.git
- Pretend to load a module into the kernel, but don't actually do it:
`sudo modprobe --dry-run {{module_name}}`
`sudo modprobe {{[-n|--dry-run]}} {{module_name}}`
- Load a module into the kernel:
@@ -19,7 +19,7 @@ source: https://github.com/tldr-pages/tldr.git
- Remove a module from the kernel:
`sudo modprobe --remove {{module_name}}`
`sudo modprobe {{[-r|--remove]}} {{module_name}}`
- Remove a module and those that depend on it from the kernel:
@@ -27,4 +27,4 @@ source: https://github.com/tldr-pages/tldr.git
- Show a kernel module's dependencies:
`sudo modprobe --show-depends {{module_name}}`
`sudo modprobe {{[-D|--show-depends]}} {{module_name}}`