» Linux »
Examen sur Linux »
Examen 201 : Advanced Administration »
Section 1 »
Question 14/20
Explanation: This command consists of multiple make commands on the same line: The first part of the
command, make dep, actually takes your configuration and builds the corresponding dependency tree. This
process determines what gets compiled and what doesn't. The next step, make clean, erase all previous traces of
a compilation so as to avoid any mistakes in which version of a feature gets tied into the kernel. The next step,
make bzImage does the full compilation of the kernel. The next two steps, make modules and make
modules_install will compile the modules and copy them to their appropriate location.
Reference: http://www.openna.com/community/articles/security/v1.3-xml/chap7sec84.html
Incorrect Answers
A: This command will compile the modules, but not the kernel.
B: You need the make dep command to build the dependency tree.
C: Make mrproper is similar to make clean except that it doesn't delete any binaries. However, there is no kernel
image specified in this command.
D: There is no kernel image specified in this command.