Linux kernel: Difference between revisions
From DWIKI
mNo edit summary |
m (→modules) |
||
(One intermediate revision by the same user not shown) | |||
Line 4: | Line 4: | ||
*[https://makelinux.github.io/kernel/map/ Interactive map of linux kernel] | *[https://makelinux.github.io/kernel/map/ Interactive map of linux kernel] | ||
== | =FAQ= | ||
==modules== | |||
===passing parameters to built in modules=== | ===passing parameters to built in modules=== | ||
options="module_name.parameter_name=value" | options="module_name.parameter_name=value" | ||
===Show module parameter values=== | |||
cat /sys/module/$module/parameters/$parameter | |||
===Show loaded modules=== | |||
lsmod | |||
===Upgrading from 2.4 to 2.6=== | ===Upgrading from 2.4 to 2.6=== |
Latest revision as of 10:01, 23 May 2023
Links
FAQ
modules
passing parameters to built in modules
options="module_name.parameter_name=value"
Show module parameter values
cat /sys/module/$module/parameters/$parameter
Show loaded modules
lsmod