An open API service indexing awesome lists of open source software.

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.

Awesome Lists containing this project

README

          

## Description

> - A simple Kernel Module project that display the machine information.

Screenshot from 2025-08-25 11-11-24




## 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
```