coreutils.xml 3.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101
  1. <sect1 id="ch06-coreutils" xreflabel="Coreutils">
  2. <title>Installing Coreutils-&coreutils-version;</title>
  3. <?dbhtml filename="coreutils.html" dir="chapter06"?>
  4. <para>The Coreutils package contains utilities for showing and setting the
  5. basic system characteristics.</para>
  6. <screen>Estimated build time: &coreutils-time;
  7. Estimated required disk space: &coreutils-compsize;</screen>
  8. &aa-coreutils-down;
  9. &aa-coreutils-dep;
  10. <sect2><title>&nbsp;</title><para>&nbsp;</para></sect2>
  11. <sect2>
  12. <title>Installation of Coreutils</title>
  13. <para>Normally the functionality of <userinput>uname</userinput> is somewhat
  14. broken, in that the <userinput>-p</userinput> switch always returns "unknown".
  15. The following patch fixes this behaviour for Intel architectures:</para>
  16. <screen><userinput>patch -Np1 -i ../&coreutils-uname-patch;</userinput></screen>
  17. <para>We do not want Coreutils to install its version of the
  18. <userinput>hostname</userinput> program, because it is inferior to the version
  19. provided by Net-tools. Prevent its installation by applying a patch:</para>
  20. <screen><userinput>patch -Np1 -i ../&coreutils-hostname-patch;</userinput></screen>
  21. <para>Now prepare Coreutils for compilation:</para>
  22. <screen><userinput>./configure --prefix=/usr</userinput></screen>
  23. <para>Compile the package:</para>
  24. <screen><userinput>make</userinput></screen>
  25. <para>The <userinput>su</userinput> program from Coreutils wasn't installed in
  26. Chapter 5 because it needed <emphasis>root</emphasis> privilege to do so. We're
  27. going to need it in a few moments for the test suite. Therefore we work around
  28. the problem by installing it now:</para>
  29. <screen><userinput>make install-root</userinput></screen>
  30. <para>This package has a test suite available which can perform a number of
  31. checks to ensure it built correctly. However, this particular test suite
  32. makes some assumptions with regards to the presence of non-root users and
  33. groups that don't apply this early into the LFS build. We therefore create
  34. a dummy system user and two dummy groups to allow the tests to run
  35. properly. Should you choose not to run the test suite, skip down to
  36. "Install the package". The following commands will prepare us for the test
  37. suite. Create two dummy groups and a dummy user name:</para>
  38. <screen><userinput>echo "dummy1:x:1000" >> /etc/group
  39. echo "dummy2:x:1001:dummy" >> /etc/group
  40. echo "dummy:x:1000:1000:::/bin/bash" >> /etc/passwd</userinput></screen>
  41. <para>Some tests are meant to run as <emphasis>root</emphasis>:</para>
  42. <screen><userinput>make check-root</userinput></screen>
  43. <para>The remainder of the tests are run as the <emphasis>dummy</emphasis>
  44. user:</para>
  45. <screen><userinput>su dummy -c "make RUN_EXPENSIVE_TESTS=yes check"</userinput></screen>
  46. <para>Remove the dummy groups and user name:</para>
  47. <screen><userinput>sed -i.bak '/dummy/d' /etc/passwd /etc/group</userinput></screen>
  48. <para>Install the package:</para>
  49. <screen><userinput>make install</userinput></screen>
  50. <para>And move some programs to their proper locations:</para>
  51. <screen><userinput>mv /usr/bin/{basename,cat,chgrp,chmod,chown,cp,dd,df} /bin
  52. mv /usr/bin/{date,echo,false,head,install,ln,ls} /bin
  53. mv /usr/bin/{mkdir,mknod,mv,pwd,rm,rmdir,sync} /bin
  54. mv /usr/bin/{sleep,stty,su,test,touch,true,uname} /bin
  55. mv /usr/bin/chroot /usr/sbin</userinput></screen>
  56. <para>We'll be using the <filename>kill</filename> program from the Procps
  57. package (installed as <filename>/bin/kill</filename> later in the chapter).
  58. Remove the one installed by Coreutils:</para>
  59. <screen><userinput>rm /usr/bin/kill</userinput></screen>
  60. <para>Finally, create a few necessary symlinks:</para>
  61. <screen><userinput>ln -s test /bin/[
  62. ln -s ../../bin/install /usr/bin</userinput></screen>
  63. </sect2>
  64. &aa-coreutils-shortdesc;
  65. &aa-coreutils-desc;
  66. </sect1>