Update README.md (#10536)

Add answer to question about linux kernel modules
This commit is contained in:
Aleksander 2024-12-21 11:39:50 +03:00 committed by GitHub
parent e19d27f443
commit fe8fdf09e3
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -627,6 +627,8 @@ The kernel is part of the operating system and is responsible for tasks like:
<details>
<summary>What is a Linux kernel module and how do you load a new module?</summary><br><b>
A Linux kernel module is a piece of code that can be dynamically loaded into the kernel to extend its functionality. These modules are typically used to add support for hardware devices, filesystems, or system calls. The kernel itself is monolithic, but with modules, its capabilities can be extended without having to reboot the system or recompile the entire kernel.
</b></details>
<details>