nerdexam
LPI

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…

Administrative Tasks

Question

Which of the following commands can be used to customize all kernel compilation options? (Choose Three)

Options

  • Amake config
  • Bmake menuconfig
  • Cmake xconfig
  • Dmake kernelconfig
  • Emake configure

How the community answered

(46 responses)
  • A
    74% (34)
  • D
    17% (8)
  • E
    9% (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; configure scripts 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

#kernel compilation#make targets#kernel configuration#system administration

Community Discussion

No community discussion yet for this question.

Full 102-500 Practice