About 646,000 results
Open links in new tab
  1. Kernel modules — The Linux Kernel documentation - GitHub Pages

    A kernel module (or loadable kernel mode) is an object file that contains code that can extend the kernel functionality at runtime (it is loaded as needed); When a kernel module is no longer …

  2. Kernel module - ArchWiki

    Kernel modules are pieces of code that can be loaded and unloaded into the kernel upon demand. They extend the functionality of the kernel without the need to reboot the system. To …

  3. Loadable kernel module - Wikipedia

    They are also known as kernel loadable module (KLM), or simply as kernel module (KMOD). Without loadable kernel modules, an operating system would have to include all possible …

  4. Chapter 2. Managing kernel modules - Red Hat

    Learn about kernel modules, how to display their information, and how to perform basic administrative tasks with kernel modules.

  5. What Is A Kernel Module? - Linux Documentation

    Modules are pieces of code that can be loaded and unloaded into the kernel upon demand. They extend the functionality of the kernel without the need to reboot the system. For example, one …

  6. Building External Modules — The Linux Kernel documentation

    To build external modules, you must have a prebuilt kernel available that contains the configuration and header files used in the build. Also, the kernel must have been built with …

  7. Step-by-Step Guide: How to Create a Kernel Module for Linux

    Apr 26, 2025 · A kernel module is simply a piece of code that can be loaded into the Linux kernel to extend its functionality. Instead of modifying the kernel itself, you can create modules that …

  8. What Is a Kernel Module? A Guide to Linux Kernel Modules

    A kernel module extends the functionality of the kernel without requiring a full system reboot. Think of it as a plugin that you can add to the kernel to support new hardware, features, or …

  9. Linux Kernel Module Programming: Hello World Program

    Jan 30, 2019 · Kernel modules are pieces of code that can be loaded and unloaded into the kernel upon demand. They extend the functionality of the kernel without the need to reboot the …

  10. The Linux Kernel Module Programming Guide - GitHub

    This project keeps the Linux Kernel Module Programming Guide up to date, with working examples for recent 5.x and 6.x kernel versions. The guide has been around since 2001 and …