102-500 · Question #154
Which of the following commands can be used to customize all kernel compilation options? (Choose Three)
The correct answer is A. make config B. make menuconfig C. make xconfig. make config, make menuconfig, and make xconfig are all valid Linux kernel configuration tools that allow you to customize kernel compilation options - they differ only in interface style. make config uses a simple sequential command-line prompt, make menuconfig provides a…
Question
Options
- Amake config
- Bmake menuconfig
- Cmake xconfig
- Dmake kernelconfig
- Emake configure
How the community answered
(46 responses)- A74% (34)
- D17% (8)
- E9% (4)
Explanation
make config, make menuconfig, and make xconfig are all valid Linux kernel configuration tools that allow you to customize kernel compilation options - they differ only in interface style. make config uses a simple sequential command-line prompt, make menuconfig provides a terminal-based ncurses menu, and make xconfig launches a graphical Qt-based GUI.
Why the distractors are wrong:
- D.
make kernelconfig- this command does not exist in the Linux kernel build system. - E.
make configure- this is not a valid kernel Makefile target;configurescripts belong to autoconf-based projects, not the Linux kernel.
Memory tip: Think of the three valid options as three ways to look at your config - blindly (sequential prompts), through a menu (ncurses TUI), or through a window (X11 GUI). If the command name doesn't describe a UI style or isn't a real make kernel target, it's a distractor.
Topics
Community Discussion
No community discussion yet for this question.