revisedchroot.xml 2.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869
  1. <?xml version="1.0" encoding="ISO-8859-1"?>
  2. <!DOCTYPE sect1 PUBLIC "-//OASIS//DTD DocBook XML V4.5//EN"
  3. "http://www.oasis-open.org/docbook/xml/4.5/docbookx.dtd" [
  4. <!ENTITY % general-entities SYSTEM "../general.ent">
  5. %general-entities;
  6. ]>
  7. <sect1 id="ch-system-revisedchroot">
  8. <?dbhtml filename="revisedchroot.html"?>
  9. <title>Cleaning Up</title>
  10. <para>Finally, clean up some extra files left around from running tests:</para>
  11. <screen><userinput>rm -rf /tmp/*</userinput></screen>
  12. <para>From now on, when reentering the chroot environment after
  13. exiting, use the following modified chroot command:</para>
  14. <screen role="nodump"><userinput>chroot "$LFS" /usr/bin/env -i \
  15. HOME=/root TERM="$TERM" \
  16. PS1='(lfs chroot) \u:\w\$ ' \
  17. PATH=/bin:/usr/bin:/sbin:/usr/sbin \
  18. /bin/bash --login</userinput></screen>
  19. <para>The reason for this is that the programs in <filename
  20. class="directory">/tools</filename> are no longer needed. Since they are no
  21. longer needed you can delete the <filename class="directory">/tools</filename>
  22. directory if so desired.</para>
  23. <note>
  24. <para>Removing <filename class="directory">/tools</filename> will also
  25. remove the temporary copies of Tcl, Expect, and DejaGNU which were used
  26. for running the toolchain tests. If you need these programs later on,
  27. they will need to be recompiled and re-installed. The BLFS book has
  28. instructions for this (see <ulink url="&blfs-root;"/>).</para>
  29. </note>
  30. <para>If the virtual kernel file systems have been unmounted, either manually
  31. or through a reboot, ensure that the virtual kernel file systems are mounted
  32. when reentering the chroot. This process was explained in <xref
  33. linkend="ch-system-bindmount"/> and <xref
  34. linkend="ch-system-kernfsmount"/>.</para>
  35. <para>There were several static libraries that were not suppressed earlier
  36. in the chapter in order to satisfy the regression tests in several packages. These
  37. libraries are from binutils, bzip2, e2fsprogs, flex, libtool, and zlib. If desired,
  38. remove them now:</para>
  39. <screen><userinput>rm -f /usr/lib/lib{bfd,opcodes}.a
  40. rm -f /usr/lib/libbz2.a
  41. rm -f /usr/lib/lib{com_err,e2p,ext2fs,ss}.a
  42. rm -f /usr/lib/libltdl.a
  43. rm -f /usr/lib/libfl.a
  44. rm -f /usr/lib/libfl_pic.a
  45. rm -f /usr/lib/libz.a</userinput></screen>
  46. <para>There are also several files installed in the /usr/lib directory with a
  47. file name extention of .la. These are "libtool archive" files and generally
  48. unneeded on a linux system. None of these are necessary at this point. To
  49. remove them, run:</para>
  50. <screen><userinput>find /usr/lib -name \*.la -delete</userinput></screen>
  51. <para>For more information about libtool archive files, see the <ulink
  52. url="&blfs-book;/introduction/la-files.html">BLFS section "About Libtool
  53. Archive (.la) files"</ulink>.</para>
  54. </sect1>