https://github.com/kenttonino/kernel-machinfo
A simple Kernel Module project that display the machine information.
https://github.com/kenttonino/kernel-machinfo
c kbuild kernel-module linux-kernel makefile
Last synced: 8 months ago
JSON representation
A simple Kernel Module project that display the machine information.
- Host: GitHub
- URL: https://github.com/kenttonino/kernel-machinfo
- Owner: kenttonino
- License: mit
- Created: 2025-08-22T12:19:26.000Z (10 months ago)
- Default Branch: master
- Last Pushed: 2025-09-17T15:43:20.000Z (9 months ago)
- Last Synced: 2025-10-01T17:56:26.142Z (8 months ago)
- Topics: c, kbuild, kernel-module, linux-kernel, makefile
- Language: C
- Homepage:
- Size: 14.6 KB
- Stars: 1
- Watchers: 0
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
## Description
> - A simple Kernel Module project that display the machine information.

## Setup
> - Make sure you installed the build modules necessary for your Linux Kernel version.
```sh
sudo apt update
sudo apt install linux-headers-$(uname -r)
```
> - Run the following commands.
```sh
# * Build the module.
make all
# * Insert the module.
make insert-module
# * View the module diagnostic message.
sudo dmesg | tail -10
# * Remove the module.
make remove-module.
# * Clean and remove the generated files.
make clean
```