LINUX - MANAGING KERNEL MODULES
LINUX - MANAGING KERNEL MODULES Objectives Completing this activity will help you to use content examples from the following syllabus objectives: 1.2 Given a scenario, install, configure, and monitor kernel modules Enter lsmod | less to examine what modules are currently running Briefly scan through the list of installed kernel modules. Press q to quit. Enter lsmod | grep bluetooth to filter the module information for bluetooth content. Verify that there are no results. You don't yet know the name of the relevant module, so this isn't necessarily definitive proof that it isn't loaded. Search for the appropriate module. Enter uname -r to retrieve the kernel version of the system. Enter cd /lib/modules/ [kernel version] /kernel/drivers Remember to use tab completion to fill the kernel version automatically. Enter ls | grep bluetooth and verify that there is a bluetooth directory. Enter cd bluetooth to chan...