glibc-inst.xml 2.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354
  1. <sect2>
  2. <title>Installation of Glibc</title>
  3. <para>Once glibc has been unpacked as usual and you have cd'ed into the
  4. glibc-&glibc-version; directory, 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>mkdir ../glibc-build &amp;&amp;</userinput>
  11. <userinput>cd ../glibc-build &amp;&amp;</userinput>
  12. <userinput>sed s/"\$(PERL)"/"\/usr\/bin\/perl"/ \</userinput>
  13. <userinput>&nbsp;&nbsp;&nbsp;../glibc-&glibc-version;/malloc/Makefile &gt; tmp~ &amp;&amp;</userinput>
  14. <userinput>mv tmp~ ../glibc-&glibc-version;/malloc/Makefile &amp;&amp;</userinput>
  15. <userinput>sed "s/root/0/" ../glibc-&glibc-version;/login/Makefile &gt; tmp~ &amp;&amp;</userinput>
  16. <userinput>mv tmp~ ../glibc-&glibc-version;/login/Makefile &amp;&amp;</userinput>
  17. <userinput>../glibc-&glibc-version;/configure \</userinput>
  18. <userinput>&nbsp;&nbsp;&nbsp;--prefix=/usr --enable-add-ons \</userinput>
  19. <userinput>&nbsp;&nbsp;&nbsp;--libexecdir=/usr/bin &amp;&amp;</userinput>
  20. <userinput>sed s/"cross-compiling = yes"/"cross-compiling = no"/ \</userinput>
  21. <userinput>&nbsp;&nbsp;&nbsp;config.make &gt; config.make~ &amp;&amp;</userinput>
  22. <userinput>mv config.make~ config.make &amp;&amp;</userinput>
  23. <userinput>make &amp;&amp;</userinput>
  24. <userinput>make install &amp;&amp;</userinput>
  25. <userinput>make localedata/install-locales</userinput></screen></para>
  26. <para>During the configure stage you will see the following warning:</para>
  27. <blockquote><screen>configure: warning:
  28. *** An auxiliary program is missing or too old;
  29. *** some features will be disabled.
  30. *** Check the INSTALL file for required versions.</screen></blockquote>
  31. <para>This warning refers to the missing msgfmt program from the gettext
  32. package. But there is nothing to worry about: Glib will still be
  33. installed the same way as when msgfmt is present. It can safely be
  34. ignored in our case.</para>
  35. <para>By exiting the chroot'ed environment and re-entering it, you will be
  36. able to get rid of the "I have no name!" message in the command prompt,
  37. which is caused by bash's inability to resolve a userid to a username.
  38. You don't have to exit and re-enter chroot, but it's highly recommended
  39. to ensure a properly working bash.</para>
  40. <para>Run the following commands to accomplish this:</para>
  41. <para><screen><userinput>logout</userinput>
  42. &c6-chrootcmd;</screen></para>
  43. </sect2>