revisedchroot.xml 3.6 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182
  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>Now log out and reenter the chroot environment with an updated
  13. chroot command. From now on, use this updated chroot command any time
  14. you need to reenter the chroot environment after exiting:</para>
  15. <screen role="nodump"><userinput>logout
  16. chroot "$LFS" /usr/bin/env -i \
  17. HOME=/root TERM="$TERM" \
  18. PS1='(lfs chroot) \u:\w\$ ' \
  19. PATH=/bin:/usr/bin:/sbin:/usr/sbin \
  20. /bin/bash --login</userinput></screen>
  21. <para>The reason for this is that the programs in <filename
  22. class="directory">/tools</filename> are no longer needed. For this reason
  23. you can delete the <filename class="directory">/tools</filename>
  24. directory if so desired.</para>
  25. <note>
  26. <para>Removing <filename class="directory">/tools</filename> will also
  27. remove the temporary copies of Tcl, Expect, and DejaGNU which were used
  28. for running the toolchain tests. If you need these programs later on,
  29. they will need to be recompiled and re-installed. The BLFS book has
  30. instructions for this (see <ulink url="&blfs-root;"/>).</para>
  31. </note>
  32. <para>If the virtual kernel file systems have been unmounted, either manually
  33. or through a reboot, ensure that the virtual kernel file systems are mounted
  34. when reentering the chroot. This process was explained in <xref
  35. linkend="ch-system-bindmount"/> and <xref
  36. linkend="ch-system-kernfsmount"/>.</para>
  37. <para>There were several static libraries that were not suppressed earlier
  38. in the chapter in order to satisfy the regression tests in several packages. These
  39. libraries are from binutils, bzip2, e2fsprogs, flex, libtool, and zlib. If desired,
  40. remove them now:</para>
  41. <screen><userinput>rm -f /usr/lib/lib{bfd,opcodes}.a
  42. rm -f /usr/lib/libctf{,-nobfd}.a
  43. rm -f /usr/lib/libbz2.a
  44. rm -f /usr/lib/lib{com_err,e2p,ext2fs,ss}.a
  45. rm -f /usr/lib/libltdl.a
  46. rm -f /usr/lib/libfl.a
  47. rm -f /usr/lib/libz.a</userinput></screen>
  48. <para>There are also several files installed in the /usr/lib and /usr/libexec
  49. directories with a file name extention of .la. These are "libtool archive"
  50. files. As already said, they are only useful when linking with static
  51. libraries. They are unneeded, and potentially harmful, when using dynamic
  52. shared libraries, specially when using also non-autotools build systems.
  53. To remove them, run:</para>
  54. <screen arch="default"><userinput>find /usr/lib /usr/libexec -name \*.la -delete</userinput></screen>
  55. <screen arch="ml_32"><userinput>find /usr/lib{,32} /usr/libexec -name \*.la -delete</userinput></screen>
  56. <screen arch="ml_x32"><userinput>find /usr/lib{,x32} /usr/libexec -name \*.la -delete</userinput></screen>
  57. <screen arch="ml_all"><userinput>find /usr/lib{,{,x}32} /usr/libexec -name \*.la -delete</userinput></screen>
  58. <para>For more information about libtool archive files, see the <ulink
  59. url="&blfs-book;/introduction/la-files.html">BLFS section "About Libtool
  60. Archive (.la) files"</ulink>.</para>
  61. <para>Finally, remove the temporary 'tester' usr account created at the
  62. beginning of this chapter.</para>
  63. <screen><userinput>sed -i '/tester/d' /etc/passwd /etc/group
  64. rm -rf /home/tester</userinput></screen>
  65. </sect1>