nerdexam
LPI

117-102 · Question #636

Which of the following removes all of the object files and some other things that an old version leaves behind?

The correct answer is B. make clean. When the configure script ends, it also tells you to make dep' and (possibly) clean'. So, do the make dep'. This insures that all of the dependencies, such the include files, are in place. It does not take long, unless your computer is fairly slow to begin with. For older…

108 Essential System Services

Question

Which of the following removes all of the object files and some other things that an old version leaves behind?

Options

  • Amake dep
  • Bmake clean
  • Cmake_dep
  • Dmake_install

How the community answered

(33 responses)
  • A
    6% (2)
  • B
    73% (24)
  • C
    3% (1)
  • D
    18% (6)

Explanation

When the configure script ends, it also tells you to make dep' and (possibly) clean'. So, do the make dep'. This insures that all of the dependencies, such the include files, are in place. It does not take long, unless your computer is fairly slow to begin with. For older versions of the kernel, when finished, you should do a make clean'. This removes all of the object files and some other things that an old version leaves behind. In any case, do not forget this step before attempting to recompile a kernel.

Topics

#make clean#kernel compilation#object files#build process

Community Discussion

No community discussion yet for this question.

Full 117-102 Practice