/linux-kernel-modules

The Linux Kernel Module Programming.

Primary LanguageCMIT LicenseMIT

The Linux Kernel Module Programming

Tring to build own Linux kernel module here.

The Linux Kernel Module Programming Guide →

Check the /var/log/kern.log:

dmesg | tail

Insert kernel module:

sudo insmod <name>.ko

Remove kernel module:

sudo rmmod <name>.ko

List of running kernel modules:

lsmod

Module info:

modinfo <name>