XK0-005 · Question #632
XK0-005 Question #632: Real Exam Question with Answer & Explanation
The correct answer is A: ./configure. {"question_number": 5, "question": "An administrator has source code and needs to rebuild a kernel module.", "correct_answer": "A", "explanation": "The standard sequence for compiling software from source code is: (1) './configure' - checks the build environment and generates a M
Question
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?
Options
- A./configure
- Bwget
- Ctar xvzf
- Dbuild
Explanation
{"question_number": 5, "question": "An administrator has source code and needs to rebuild a kernel module.", "correct_answer": "A", "explanation": "The standard sequence for compiling software from source code is: (1) './configure' - checks the build environment and generates a Makefile, (2) 'make' - compiles the source code, (3) 'make install' - installs the compiled binaries. The './configure' step is the first and most essential step in this workflow, making it the answer. 'wget' (B) is used to download files from the internet, not to build them. 'tar xvzf' (C) extracts a compressed archive and would precede the build process. 'build' (D) is not a standard Linux build command.", "generated_by": "claude-sonnet", "llm_judge_score": 3}
Topics
Community Discussion
No community discussion yet for this question.