This repository contains simple kernel-level programming exercises written in C.
It is designed for beginners to explore Linux kernel modules, basic system calls, and low-level programming concepts.
- Clone the repository:
git clone https://github.com/FreyKernel/mini_top
cd mini_top- Compile a kernel module (example):
make- Insert the module into the kernel:
sudo insmod mini_top.ko- Check kernel messages:
dmesg | tail- Remove the module when done:
sudo rmmod mini_topEnjoy It!