Managing Kernel Modules Flashcards
What are some of the things the kernel is responsible for?
Memory, Processes, Devices, Resource allocation, File system access
What is the command you would run to see all of the information about your version of Linux?
uname -a
What command would you run in order to see all modules and their status?
lsmod
What utility command could you run to get more information on a specific module?
modinfo
Whats the command you can run to install a module?
insmod
Whats the command you can run to remove a module?
rmmod
What path are the modules that are loaded into the kernel located at?
/usr/lib/modules OR /lib/modules
What command can you use to tell the system to probe for new hardware?
modprobe
Where are the configuration files for modprobe?
/etc/modprobe.conf OR /etc/modprobe.d/
Whats a command you could run to identify module dependencies?
depmod
What command can you use to see all of the parameters that manipulate the kernel at runtime?
sysctl -a