glibc-inst.xml 2.5 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455
  1. <sect2>
  2. <title>Installation of Glibc</title>
  3. <para>Before starting to install glibc, you must cd into the
  4. glibc-&glibc-version; directory and unpack glibc-linuxthreads inside
  5. the glibc-&glibc-version; directory, not in /usr/src as you normally
  6. would do.</para>
  7. <para>Install Glibc by running the following commands:</para>
  8. <para><screen><userinput>mknod -m 0666 /dev/null c 1 3 &amp;&amp;</userinput>
  9. <userinput>touch /etc/ld.so.conf &amp;&amp;</userinput>
  10. <userinput>cp -f malloc/Makefile \</userinput>
  11. <userinput>&nbsp;&nbsp;&nbsp;malloc/Makefile.backup &amp;&amp;</userinput>
  12. <userinput>sed 's%\$(PERL)%/usr/bin/perl%' \</userinput>
  13. <userinput>&nbsp;&nbsp;&nbsp;malloc/Makefile &gt; tmp~ &amp;&amp;</userinput>
  14. <userinput>mv -f tmp~ malloc/Makefile &amp;&amp;</userinput>
  15. <userinput>cp -f login/Makefile \</userinput>
  16. <userinput>&nbsp;&nbsp;&nbsp;login/Makefile.backup &amp;&amp;</userinput>
  17. <userinput>sed 's/root/0/' login/Makefile &gt; tmp~ &amp;&amp;</userinput>
  18. <userinput>mv -f tmp~ login/Makefile &amp;&amp;</userinput>
  19. <userinput>mkdir ../glibc-build &amp;&amp;</userinput>
  20. <userinput>cd ../glibc-build &amp;&amp;</userinput>
  21. <userinput>../glibc-&glibc-version;/configure \</userinput>
  22. <userinput>&nbsp;&nbsp;&nbsp;--prefix=/usr --enable-add-ons \</userinput>
  23. <userinput>&nbsp;&nbsp;&nbsp;--libexecdir=/usr/bin &amp;&amp;</userinput>
  24. <userinput>cp -f config.make config.make.backup &amp;&amp;</userinput>
  25. <userinput>sed 's/cross-compiling = yes/cross-compiling = no/' \</userinput>
  26. <userinput>&nbsp;&nbsp;&nbsp;config.make &gt; tmp~ &amp;&amp;</userinput>
  27. <userinput>mv -f tmp~ config.make &amp;&amp;</userinput>
  28. <userinput>make &amp;&amp;</userinput>
  29. <userinput>make install &amp;&amp;</userinput>
  30. <userinput>make localedata/install-locales &amp;&amp;</userinput>
  31. <userinput>logout</userinput>
  32. &c6-chrootcmd;</screen></para>
  33. <para>During the configure stage you will see the following warning:</para>
  34. <blockquote><screen>configure: warning:
  35. *** An auxiliary program is missing or too old;
  36. *** some features will be disabled.
  37. *** Check the INSTALL file for required versions.</screen></blockquote>
  38. <para> This warning refers to the missing msgfmt program from the
  39. gettext package, but it can safely be ignored in our case. The glibc
  40. installation will not be affected.</para>
  41. <para>The last two commands make you exit and re-enter the chroot'ed
  42. environment. This is done to get rid of the "I have
  43. no name!" message in the command prompt, which was caused by bash's
  44. inability to resolve a userid to a username (which in turn was caused by
  45. the missing Glibc installation).</para>
  46. </sect2>