Skip to content

merzouk/lkm_oper_params

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

13 Commits
 
 
 
 
 
 

Repository files navigation

linux-kernel-module

Simple examples of Linux Kernel Modules.

Building the Module

make

The module is compiled to lkm_oper.ko.

clean the Module

make clean

Installing / Uninstalling

# Install without parameters :
sudo insmod lkm_oper.ko

# Install with parameters:
sudo insmod lkm_oper.ko a=11 b=15
sudo insmod lkm_oper.ko a=11
sudo insmod lkm_oper.ko b=15

# view output of executed program :
dmesg

# Uninstall
sudo rmmod lkm_oper

About

Example of kernel using static params

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published