# linux-driver-tutorials **Repository Path**: Phoebus-Ma/linux-driver-tutorials ## Basic Information - **Project Name**: linux-driver-tutorials - **Description**: No description available - **Primary Language**: C - **License**: GPL-2.0 - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2025-05-28 - **Last Updated**: 2025-06-07 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # Introduction Linux driver tutorial. Copy and eidt for: # Installation ```bash $ sudo apt update $ sudo apt install raspberrypi-kernel-headers ``` # Kernel headers 1. Actual path: ```bash /usr/src/linux-headers-$(shell uname -r) ``` 2. Soft link: ```bash /lib/modules/$(shell uname -r)/build ``` ```bash ls -l /lib/modules/$(shell uname -r)/build /lib/modules/$(shell uname -r)/build -> /usr/src/linux-headers-$(shell uname -r) ``` # License MIT License.