nerdexam
LPI

117-102 · Question #637

What command will compile the Linux kernel and leave a file in arch/i386/boot called bzImage?

The correct answer is A. make bzImage. After depending and cleaning, you may now make bzImage' or make bzdisk' (this is the part that takes a long time.). make bzImage' will compile the kernel, and leave a file in arch/i386/boot called bzImage' (among other things). This is the new compressed kernel. make bzdisk'…

107 Administrative Tasks

Question

What command will compile the Linux kernel and leave a file in arch/i386/boot called bzImage?

Options

  • Amake bzImage
  • Bmake compile
  • Cmake Image
  • Dmake bzdisk

How the community answered

(53 responses)
  • A
    74% (39)
  • B
    4% (2)
  • C
    15% (8)
  • D
    8% (4)

Explanation

After depending and cleaning, you may now make bzImage' or make bzdisk' (this is the part that takes a long time.). make bzImage' will compile the kernel, and leave a file in arch/i386/boot called bzImage' (among other things). This is the new compressed kernel. make bzdisk' does the same thing, but also places the new bzImage on a floppy disk which you hopefully put in drive ``A:''. bzdisk' is fairly handy for testing new kernels; if it bombs (or just doesn't work right), just remove the floppy and boot with your old kernel. It can also be a handy way to boot if you accidentally remove your kernel (or something equally as dreadful).

Topics

#kernel compilation#make bzImage#build system#bzImage

Community Discussion

No community discussion yet for this question.

Full 117-102 Practice