kernel-desc.xml 1.0 KB

123456789101112131415161718192021
  1. <sect2><title>Short descriptions</title>
  2. <para>The <emphasis>kernel</emphasis> is the engine of your GNU/Linux system.
  3. When switching on your box, the kernel is the first part of your operating
  4. system that gets loaded. It detects and initializes all the components of your
  5. computer's hardware, then makes these components available as a tree of files
  6. to the software, and turns a single CPU into a multi-tasking machine capable
  7. of running scores of programs seemingly at the same time.</para>
  8. <para>The <emphasis>kernel headers</emphasis> define the interface to the
  9. services that the kernel provides. The headers in your system's
  10. <filename>include</filename> directory should <emphasis>always</emphasis> be
  11. the ones against which Glibc was compiled and should therefore
  12. <emphasis>not</emphasis> be replaced when upgrading the kernel.</para>
  13. <para>The <filename>System.map</filename> file is a list of addresses and
  14. symbols. It maps the entry points and addresses of all the functions and data
  15. structures in the kernel.</para>
  16. </sect2>