glibc-inst.xml 6.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150
  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 or older libraries. Even though
  34. static binaries have all the necessary parts of Glibc built-in, they still
  35. rely 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 2.2.x and the new NSS
  40. code is incompatible with the old one. So when Glibc is installed, it will
  41. install its new NSS libraries and static programs will load these new NSS
  42. libraries and start to abort with <emphasis>segmentation faults</emphasis>.
  43. This patch undoes a few of the changes to overcome the problem.</para>
  44. <para>So, if you started chapter 5 with a host system that uses Glibc-2.2.x
  45. or older, you must apply the following patch. We will install Glibc again at
  46. the end of this chapter to remove this patch so you'll have a pristine Glibc
  47. as the developers intended it.</para>
  48. <para><screen><userinput>patch -Np1 -i ../glibc-&glibc-libnss-patch-version;-libnss.patch</userinput></screen></para>
  49. <para>Glibc will check for the <filename>/etc/ld.so.conf</filename> file
  50. and abort with an error if the file is missing, so we must create it.</para>
  51. <para><screen><userinput>touch /etc/ld.so.conf</userinput></screen></para>
  52. <para>It is recommended by the Glibc installation documentation to build
  53. Glibc outside of the source directory in a dedicated directory.</para>
  54. <para><screen><userinput>mkdir ../glibc-build &amp;&amp;
  55. cd ../glibc-build</userinput></screen></para>
  56. <para>Next, prepare Glibc to be compiled.</para>
  57. <para><screen><userinput>../glibc-&glibc-version;/configure --prefix=/usr \
  58. &nbsp;&nbsp;&nbsp;&nbsp;--disable-profile --enable-add-ons \
  59. &nbsp;&nbsp;&nbsp;&nbsp;--libexecdir=/usr/bin</userinput></screen></para>
  60. <para>During this stage you will see the following warning:</para>
  61. <blockquote><screen>configure: warning:
  62. *** These auxiliary programs are missing or too old: msgfmt
  63. *** some features will be disabled.
  64. *** Check the INSTALL file for required versions.</screen></blockquote>
  65. <para>The missing msgfmt (from the gettext package which we will install
  66. later in this chapter) won't cause any problems. msgfmt is used to generate
  67. the binary translation files that are used to make your system talk in a
  68. different language. Because these translation files have already been
  69. generated for you, there is no need for msgfmt. You'd only need msgfmt if
  70. you change the translation source files (the <filename>*.po</filename>
  71. files in the <filename class="directory">po</filename> subdirectory) which
  72. would require you to re-generate the binary files.</para>
  73. <para>The meaning of the configure options are:</para>
  74. <itemizedlist>
  75. <listitem><para><userinput>--disable-profile:</userinput> This disables the
  76. building of libraries with profiling information. This command may be
  77. omitted if you plan to do profiling.</para></listitem>
  78. <listitem><para><userinput>--enable-add-ons:</userinput> This enables the
  79. add-on that we install with Glibc, linuxthreads</para></listitem>
  80. <listitem><para><userinput>--libexecdir=/usr/bin:</userinput> This will
  81. cause the pt_chown program to be installed in the /usr/bin
  82. directory.</para></listitem>
  83. </itemizedlist>
  84. <para>Because Glibc hasn't been installed yet, one of the tests that was
  85. run by the configure script failed. This test is supposed to test gcc to
  86. determine whether or not a cross-compiler is installed. However, Glibc
  87. needs to be installed already to run this test. Since the test failed, the
  88. configure script automatically assumed we do have a cross-compiler. So,
  89. we have to override that assumption by explicitly telling Glibc we're not
  90. cross-compiling.</para>
  91. <para><screen><userinput>echo "cross-compiling = no" &gt; configparms</userinput></screen></para>
  92. <para>We'll continue with compiling and installing Glibc. The Linuxthreads man
  93. pages are not going to be installed at this point because it requires a
  94. working Perl installation. We'll install Perl later on in this chapter,
  95. and the man pages will be installed when Glibc is installed for the second
  96. time at the end of this chapter.</para>
  97. <para><screen><userinput>make &amp;&amp;
  98. make install</userinput></screen></para>
  99. <para>Locales aren't installed when you ran
  100. <userinput>make install</userinput>, so we have to do that ourselves now.
  101. Locales are used by Glibc to make your Linux system talk in a different
  102. language.</para>
  103. <para><screen><userinput>make localedata/install-locales</userinput></screen></para>
  104. <para>An alternative to running <userinput>make
  105. localedata/install-locales</userinput> is to only install those locales
  106. which you need or want. This can be achieved using the localedef
  107. command. Information on this can be found in the INSTALL
  108. file in the glibc-&glibc-version; tree.</para>
  109. <para>To finish off the installation we'll reload Bash so it uses the
  110. libnss files. This will also get rid of the
  111. <emphasis>I have no name!</emphasis> message in the command prompt.</para>
  112. <para><screen><userinput>exec /static/bin/bash --login</userinput></screen></para>
  113. </sect2>