glibc-inst.xml 6.6 KB

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