From 298edf8587ce211a19ed62508affbeb6dec78eec Mon Sep 17 00:00:00 2001 From: Andriy Petrov Date: Wed, 17 Apr 2024 12:13:15 +0200 Subject: [PATCH] misc commands --- README.md | 14 +++++--------- 1 file changed, 5 insertions(+), 9 deletions(-) diff --git a/README.md b/README.md index dfe048c..d2da249 100644 --- a/README.md +++ b/README.md @@ -117,28 +117,24 @@ In order for module to use any externally declared symbol module must: 2. Add another entry to the `__versions` section -# Misc - -## Module loading +# Misc commands +* Module loading ```bash insmod module_name.ko ``` -## List loaded modules - +* List loaded modules ```bash lsmod ``` -## Logs - +* Logs ```bash dmesg | grep insmod ``` -## Module unloading - +* Module unloading ```bash rmmod MODULE_NAME # from .gnu.linkonce.this_module section ```