linux kernel module practice
1.0.0
# Install Rust nightly compiler and download Rust source codes
rustup toolchain install nightly
rustup +nightly component add rust-src
# Install prerequisites
sudo apt-get install make linux-headers-4.9.0-12-amd64
# Build
make -j
# Load & unload the module, check `dmesg`
sudo insmod mymodule.ko
sudo rmmod mymodule
# Clean
make cleanLinux-Kernel-Module-Practice wird unter den Bestimmungen der GNU General Public Lizenz v2.0 oder einer späteren Version verteilt. Weitere Informationen finden Sie im Urheberrecht.