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 needed, it can be …

  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 create a kernel …

  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 anticipated …

  4. 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 type of …

  5. 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 drivers.

  6. 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 add or …

  7. 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.

  8. 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 modules enabled.

  9. Linux Kernel Modules: A Complete Guide - Publish0x

    Dec 9, 2024 · Thanks to its modular architecture, Linux allows you to extend its capabilities without the need to recompile the kernel. This article will explain what kernel modules are, how they work, how …

  10. Unveiling the Mysteries of Linux Kernel Modules - linuxvox.com

    Nov 14, 2025 · A Linux kernel module is a piece of code that can be loaded and unloaded into the kernel on demand. Unlike a monolithic kernel where all functionality is compiled into a single binary, kernel …