glibc-inst.xml 6.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152
  1. <sect2><title>&nbsp;</title><para>&nbsp;</para></sect2>
  2. <sect2>
  3. <title>Glibc installation</title>
  4. <para>Before starting to install glibc, you must cd into the
  5. glibc-&glibc-version; directory and unpack glibc-linuxthreads inside
  6. the glibc-&glibc-version; directory, not in /usr/src as you normally
  7. would do.</para>
  8. <para>This package is known to behave badly when you have changed its
  9. default optimization flags (including the -march and -mcpu options). Glibc
  10. is best left alone. Therefore, if you have defined any environment variables
  11. that override default optimizations, such as CFLAGS and CXXFLAGS, we
  12. recommend unsetting or modifying them when building Glibc. You have
  13. been warned.</para>
  14. <para>Basically, compiling Glibc in any other way than the book suggests
  15. is putting your system at very high risk.</para>
  16. <para>We'll start by applying a patch to Glibc that fixes the following:</para>
  17. <itemizedlist>
  18. <listitem><para>It converts all occurrences of <emphasis>$(PERL)</emphasis>
  19. to <emphasis>/usr/bin/perl</emphasis> in the
  20. <filename>malloc/Makefile</filename> file. This is done because Glibc
  21. can't autodetect the location of perl because the Perl package hasn't been
  22. installed yet.</para></listitem>
  23. <listitem><para>It replaces all occurrences of <emphasis>root</emphasis>
  24. with <emphasis>0</emphasis> in the <filename>login/Makefile</filename>
  25. file. This is done because Glibc itself isn't installed yet and therefore
  26. username to userid resolving isn't working yet, so a
  27. <userinput>chown root file</userinput> will fail, however it'll work fine
  28. if you use the numeric IDs (such as <userinput>chown 0
  29. file</userinput>).</para></listitem>
  30. </itemizedlist>
  31. <para><screen><userinput>patch -Np1 -i ../glibc-&glibc-rootperl-patch-version;-root-perl.patch</userinput></screen></para>
  32. <para>There is a potential problem that causes statically linked binaries
  33. to crash that were linked against Glibc-2.2 libraries. Even though static
  34. binaries have all the necessary parts of Glibc built-in, they still rely
  35. on one external library: Glibc's NSS libraries. These libraries, among
  36. other things, tell programs where the system's password database is
  37. (/etc/password, or NIS, or whatever other scheme has been
  38. configured).</para>
  39. <para>Glibc has undergone some changes since version
  40. 2.2.x and the new NSS code is incompatible with the old one. So when Glibc
  41. is installed, it will install its new NSS libraries and static programs
  42. will load these new NSS libraries and start to abort with
  43. <emphasis>segmentation faults</emphasis>. This patch undoes a few of the
  44. changes to overcome the problem.</para>
  45. <para>So, if you started chapter 5 with a host system that uses Glibc-2.2.x
  46. you must apply the following patch. We will install Glibc again at the end
  47. of this chapter to remove this patch so you'll have a pristine Glibc as the
  48. developers intended
  49. it.</para>
  50. <para><screen><userinput>patch -Np1 -i ../glibc-&glibc-libnss-patch-version;-libnss.patch</userinput></screen></para>
  51. <para>Glibc will check for the <filename>/etc/ld.so.conf</filename> file
  52. and abort with an error if the file is missing, so we must create it.</para>
  53. <para><screen><userinput>touch /etc/ld.so.conf</userinput></screen></para>
  54. <para>It is recommended by the Glibc installation documentation to build
  55. Glibc outside of the source directory in a dedicated directory.</para>
  56. <para><screen><userinput>mkdir ../glibc-build &amp;&amp;
  57. cd ../glibc-build</userinput></screen></para>
  58. <para>Next, prepare Glibc to be compiled.</para>
  59. <para><screen><userinput>../glibc-&glibc-version;/configure --prefix=/usr \
  60. &nbsp;&nbsp;&nbsp;&nbsp;--disable-profile --enable-add-ons \
  61. &nbsp;&nbsp;&nbsp;&nbsp;--libexecdir=/usr/bin</userinput></screen></para>
  62. <para>During this stage you will see the following warning:</para>
  63. <blockquote><screen>configure: warning:
  64. *** These auxiliary programs are missing or too old: msgfmt
  65. *** some features will be disabled.
  66. *** Check the INSTALL file for required versions.</screen></blockquote>
  67. <para>The missing msgfmt (from the gettext package which we will install
  68. later in this chapter) won't cause any problems. msgfmt is used to generate
  69. the binary translation files that are used to make your system talk in a
  70. different language. Because these translation files have already been
  71. generated for you, there is no need for msgfmt. You'd only need msgfmt if
  72. you change the translation source files (the <filename>*.po</filename>
  73. files in the <filename class="directory">po</filename> subdirectory) which
  74. would require you to re-generate the binary files.</para>
  75. <para>The meaning of the configure switches are:</para>
  76. <itemizedlist>
  77. <listitem><para><userinput>--disable-profile:</userinput> This disables the
  78. building of libraries with profiling information. This command may be
  79. omitted if you plan to do profiling.</para></listitem>
  80. <listitem><para><userinput>--enable-add-ons:</userinput> This enables the
  81. add-on that we install with Glibc, linuxthreads</para></listitem>
  82. <listitem><para><userinput>--libexecdir=/usr/bin:</userinput> This will
  83. cause the pt_chown program to be installed in the /usr/bin
  84. directory.</para></listitem>
  85. </itemizedlist>
  86. <para>Because Glibc hasn't been installed yet, one of the tests that was
  87. run by the configure script failed. This test is supposed to test gcc to
  88. determine whether or not a cross-compiler is installed. However, Glibc
  89. needs to be installed already to run this test. Since the test failed, the
  90. configure script automatically assumed we do have a cross-compiler. So,
  91. we have to override that assumption by explicitly telling Glibc we're not
  92. cross-compiling.</para>
  93. <para><screen><userinput>echo "cross-compiling = no" &gt; configparms</userinput></screen></para>
  94. <para>We'll continue with compiling and installing Glibc. The Linuxthreads man
  95. pages are not going to be installed at this point because it requires a
  96. working Perl installation. We'll install Perl later on in this chapter,
  97. and the man pages will be installed when Glibc is installed for the second
  98. time at the end of this chapter.</para>
  99. <para><screen><userinput>make &amp;&amp;
  100. make install</userinput></screen></para>
  101. <para>Locales aren't installed when you ran
  102. <userinput>make install</userinput>, so we have to do that ourselves now.
  103. Locales are used by Glibc to make your Linux system talk in a different
  104. language.</para>
  105. <para><screen><userinput>make localedata/install-locales</userinput></screen></para>
  106. <para>An alternative to running <userinput>make
  107. localedata/install-locales</userinput> is to only install those locales
  108. which you need or want. This can be achieved using the localedef
  109. command. Information on this can be found in the INSTALL
  110. file in the glibc-&glibc-version; tree.</para>
  111. <para>To finish off the installation we'll reload Bash so it uses the
  112. libnss files. This will also get rid of the
  113. <emphasis>I have no name!</emphasis> message in the command prompt.</para>
  114. <para><screen><userinput>exec /static/bin/bash --login</userinput></screen></para>
  115. </sect2>