An open API service indexing awesome lists of open source software.

https://github.com/gotz1480/hello-world-linux-kernel-module

Linux kernel module tutorial
https://github.com/gotz1480/hello-world-linux-kernel-module

Last synced: 6 months ago
JSON representation

Linux kernel module tutorial

Awesome Lists containing this project

README

          

# hello-world-linux-kernel-module
Linux kernel module tutorial

## Loading and unloading the module

### Compile

`make`

### Load the module

`sudo insmod ./hello-world.ko`

### Check the kernel buffer

`sudo dmesg`

### List kernel modules

`lsmod`

### Unload the module

`sudo rmmod hello_world`