hostreqs.xml 3.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102
  1. <?xml version="1.0" encoding="ISO-8859-1"?>
  2. <!DOCTYPE sect1 PUBLIC "-//OASIS//DTD DocBook XML V4.4//EN"
  3. "http://www.oasis-open.org/docbook/xml/4.4/docbookx.dtd" [
  4. <!ENTITY % general-entities SYSTEM "../general.ent">
  5. %general-entities;
  6. ]>
  7. <sect1 id="pre-hostreqs">
  8. <?dbhtml filename="hostreqs.html"?>
  9. <title>Host System Requirements</title>
  10. <para>Your host system should have the following software with the minimum
  11. versions indicated. This should not be an issue for most modern Linux
  12. distributions. Also note that many distributions will place software headers
  13. into separate packages, often in the form of <quote>[package-name]-devel</quote>
  14. or <quote>[package-name]-dev</quote>. Be sure to install those as well, if
  15. your distribution provides them.</para>
  16. <itemizedlist>
  17. <listitem>
  18. <para>Bash-2.05a</para>
  19. </listitem>
  20. <listitem>
  21. <para>Binutils-2.12 (Versions greater than &binutils-version; not recommended.)</para>
  22. </listitem>
  23. <listitem>
  24. <para>Bzip2-1.0.2</para>
  25. </listitem>
  26. <listitem>
  27. <para>Coreutils-5.0 (or Sh-Utils-2.0, Textutils-2.0
  28. and Fileutils-4.1)</para>
  29. </listitem>
  30. <listitem>
  31. <para>Diffutils-2.8</para>
  32. </listitem>
  33. <listitem>
  34. <para>Findutils-4.1.20</para>
  35. </listitem>
  36. <listitem>
  37. <para>Gawk-3.0</para>
  38. </listitem>
  39. <listitem>
  40. <para>Gcc-2.95.3 (Versions greater than &gcc-version; not recommended.)</para>
  41. </listitem>
  42. <listitem>
  43. <para>Glibc-2.2.5 (Versions greater than &glibc-version; not recommended.)</para>
  44. </listitem>
  45. <listitem>
  46. <para>Grep-2.5</para>
  47. </listitem>
  48. <listitem>
  49. <para>Gzip-1.2.4</para>
  50. </listitem>
  51. <listitem>
  52. <para>Linux Kernel-2.6.2 (having been compiled with Gcc-3.0)</para>
  53. </listitem>
  54. <listitem>
  55. <para>Make-3.79.1</para>
  56. </listitem>
  57. <listitem>
  58. <para>Patch-2.5.4</para>
  59. </listitem>
  60. <listitem>
  61. <para>Sed-3.0.2</para>
  62. </listitem>
  63. <listitem>
  64. <para>Tar-1.14</para>
  65. </listitem>
  66. </itemizedlist>
  67. <para>There are two main reasons for the kernel version requirement. First,
  68. the Native POSIX Threading Library (NPTL) test suite will segfault if the
  69. host's kernel has not been compiled with GCC-3.0 or a later version. Second,
  70. the 2.6.2 or later version of the kernel is required for the use of Udev.
  71. Udev creates devices dynamically by reading from the <systemitem
  72. class="filesystem">sysfs</systemitem> file system. However, support for this
  73. filesystem has only recently been implemented in most of the kernel drivers.
  74. We must be sure that all critical system devices get created properly.</para>
  75. <para>In order to determine whether the host kernel meets the requirements
  76. outlined above, run the following command:</para>
  77. <screen role="nodump"><userinput>cat /proc/version</userinput></screen>
  78. <para>This will produce output similar to:</para>
  79. <screen><computeroutput>Linux version 2.6.2 (user@host) (gcc version 3.4.0) #1
  80. Tue Apr 20 21:22:18 GMT 2004</computeroutput></screen>
  81. <para>If the results of the above command do not state that the host kernel
  82. is either 2.6.2 (or later), or that it was not compiled using a GCC-3.0 (or
  83. later) compiler, one will need to be installed. There are two methods you
  84. can take to solve this. First, see if your Linux vendor provides a 2.6.2 (or
  85. later) kernel package. If so, you may wish to install it. If your vendor
  86. doesn't offer a 2.6.2 (or later) kernel package, or you would prefer not to
  87. install it, then you can compile a 2.6 kernel yourself. Instructions for
  88. compiling the kernel and configuring the boot loader (assuming the host
  89. uses GRUB) are located in <xref linkend="chapter-bootable"/>.</para>
  90. </sect1>