chroot.xml 3.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465
  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-tools-chroot">
  8. <?dbhtml filename="chroot.html"?>
  9. <title>Entering the Chroot Environment</title>
  10. <para>Now that all the packages which depend on themselves for being built
  11. are on the system, it is time to enter the chroot environment to finish
  12. installing the remaining temporary tools. This environment will be in use
  13. also for installing the final system. As user <systemitem
  14. class="username">root</systemitem>, run the following command to enter the
  15. realm that is, at the moment, populated with only the temporary tools:</para>
  16. <screen role="nodump"><userinput>chroot "$LFS" /usr/bin/env -i \
  17. HOME=/root \
  18. TERM="$TERM" \
  19. PS1='(lfs chroot) \u:\w\$ ' \
  20. PATH=/bin:/usr/bin:/sbin:/usr/sbin \
  21. /bin/bash --login +h</userinput></screen>
  22. <para>The <parameter>-i</parameter> option given to the <command>env</command>
  23. command will clear all variables of the chroot environment. After that, only
  24. the <envar>HOME</envar>, <envar>TERM</envar>, <envar>PS1</envar>, and
  25. <envar>PATH</envar> variables are set again. The
  26. <parameter>TERM=$TERM</parameter> construct will set the <envar>TERM</envar>
  27. variable inside chroot to the same value as outside chroot. This variable is
  28. needed for programs like <command>vim</command> and <command>less</command>
  29. to operate properly. If other variables are needed, such as
  30. <envar>CFLAGS</envar> or <envar>CXXFLAGS</envar>, this is a good place to set
  31. them again.</para>
  32. <para>From this point on, there is no need to use the
  33. <envar>LFS</envar> variable anymore, because all work will be restricted
  34. to the LFS file system. This is because the Bash shell is told that
  35. <filename class="directory">$LFS</filename> is now the root
  36. (<filename class="directory">/</filename>) directory.</para>
  37. <para>Notice that <filename class="directory">/tools/bin</filename> is not
  38. anymore in the <envar>PATH</envar>. This means that a temporary tool will no longer be
  39. used once its final version is installed. This occurs when the shell does not
  40. <quote>remember</quote> the locations of executed binaries&mdash;for this
  41. reason, hashing is switched off by passing the <parameter>+h</parameter> option
  42. to <command>bash</command>.</para>
  43. <para>Note that the <command>bash</command> prompt will say
  44. <computeroutput>I have no name!</computeroutput> This is normal because the
  45. <filename>/etc/passwd</filename> file has not been created yet.</para>
  46. <note>
  47. <para>It is important that all the commands throughout the remainder of this
  48. chapter and the following chapters are run from within the chroot
  49. environment. If you leave this environment for any reason (rebooting for
  50. example), ensure that the virtual kernel filesystems are mounted as
  51. explained in <xref linkend="ch-system-bindmount"/> and <xref
  52. linkend="ch-system-kernfsmount"/> and enter chroot again before continuing
  53. with the installation.</para>
  54. </note>
  55. </sect1>