In this project we can simply implement a kernel module
We have 3 basic steps
create a module file (in this project our file is hello.c)
compile the module file with Makefile (also we have Makefile you can check)
Implement the module file: after compiling we have some files endswith .ko (E.g hello.ko)
use this command implement the module
sudo insmod hello.ko
simply you can use sudo rmmod hello
sudo lsmod