CompTIA Linux+ (XK0-005) — Question 241
An administrator has source code and needs to rebuild a kernel module. Which of the following command sequences is most commonly used to rebuild this type of module?
Answer options
- A. ./configure make make install
- B. wget gcc cp
- C. tar xvzf build cp
- D. build install configure
Correct answer: A
Explanation
The correct answer is A because the sequence of commands './configure', 'make', and 'make install' is the standard method for compiling and installing kernel modules from source code. Options B, C, and D do not represent the typical steps required for this process and would not successfully rebuild a kernel module.