settingenviron.xml 4.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192
  1. <?xml version="1.0" encoding="ISO-8859-1"?>
  2. <!DOCTYPE sect1 PUBLIC "-//OASIS//DTD DocBook XML V4.4//EN" "http://www.oasis-open.org/docbook/xml/4.4/docbookx.dtd" [
  3. <!ENTITY % general-entities SYSTEM "../general.ent">
  4. %general-entities;
  5. ]>
  6. <sect1 id="ch-tools-settingenviron">
  7. <title>Setting Up the Environment</title>
  8. <?dbhtml filename="settingenvironment.html"?>
  9. <para>Set up a good working environment by creating two new startup
  10. files for the <command>bash</command> shell. While logged in as user
  11. <emphasis>lfs</emphasis>, issue the
  12. following command to create a new <filename>.bash_profile</filename>:</para>
  13. <screen><userinput>cat &gt; ~/.bash_profile &lt;&lt; "EOF"
  14. <literal>exec env -i HOME=$HOME TERM=$TERM PS1='\u:\w\$ ' /bin/bash</literal>
  15. EOF</userinput></screen>
  16. <para>When logged on as user <emphasis>lfs</emphasis>, the
  17. initial shell is usually a <emphasis>login</emphasis> shell which reads the
  18. <filename>/etc/profile</filename> of the host (probably containing
  19. some settings and environment variables) and then
  20. <filename>.bash_profile</filename>. The <command>exec env
  21. -i.../bin/bash</command> command in the
  22. <filename>.bash_profile</filename> file replaces the running shell
  23. with a new one with a completely empty environment, except for the
  24. <envar>HOME</envar>, <envar>TERM</envar>, and
  25. <envar>PS1</envar> variables. This ensures that no unwanted and
  26. potentially hazardous environment variables from the host system leak
  27. into the build environment. The technique used here achieves the goal
  28. of ensuring a clean environment.</para>
  29. <para>The new instance of the shell is a <emphasis>non-login</emphasis>
  30. shell, which does not read the <filename>/etc/profile</filename> or
  31. <filename>.bash_profile</filename> files, but rather reads the
  32. <filename>.bashrc</filename> file instead. Create the
  33. <filename>.bashrc</filename> file now:</para>
  34. <screen><userinput>cat &gt; ~/.bashrc &lt;&lt; "EOF"
  35. <literal>set +h
  36. umask 022
  37. LFS=/mnt/lfs
  38. LC_ALL=POSIX
  39. PATH=/tools/bin:/bin:/usr/bin
  40. export LFS LC_ALL PATH</literal>
  41. EOF</userinput></screen>
  42. <para>The <command>set +h</command> command turns off
  43. <command>bash</command>'s hash function. Hashing is ordinarily a useful
  44. feature&mdash;<command>bash</command> uses a hash table to remember the
  45. full path of executable files to avoid searching the <envar>PATH</envar> time
  46. and again to find the same executable. However, the new tools
  47. should be used as soon as they are installed. By switching off the
  48. hash function, the shell will always search the <envar>PATH</envar> when a program is
  49. to be run. As such, the shell will find the newly compiled
  50. tools in <filename class="directory">$LFS/tools</filename> as soon as
  51. they are available without remembering a previous version of the same
  52. program in a different location.</para>
  53. <para>Setting the user file-creation mask (umask) to 022 ensures that newly
  54. created files and directories are only writable by their owner, but
  55. are readable and executable by anyone (assuming default modes are used
  56. by the open(2) system call, new files will end up with permission mode
  57. 644 and directories with mode 755).</para>
  58. <para>The <envar>LFS</envar> variable should be set to the
  59. chosen mount point.</para>
  60. <para>The <envar>LC_ALL</envar> variable controls the
  61. localization of certain programs, making their messages follow the
  62. conventions of a specified country. If the host system uses a version
  63. of Glibc older than 2.2.4, having <envar>LC_ALL</envar> set to something other than
  64. <quote>POSIX</quote> or <quote>C</quote> (during this chapter) may
  65. cause issues if you exit the chroot environment and wish to return
  66. later. Setting <envar>LC_ALL</envar> to <quote>POSIX</quote>
  67. or <quote>C</quote> (the two are equivalent) ensures that
  68. everything will work as expected in the chroot environment.</para>
  69. <para>By putting <filename class="directory">/tools/bin</filename> ahead of the
  70. standard <envar>PATH</envar>, all the programs installed in <xref
  71. linkend="chapter-temporary-tools"/> are picked up by the shell immediately after
  72. their installation. This, combined with turning off hashing, limits the risk
  73. that old programs are used from the host when the same programs are available in
  74. the chapter 5 environment.</para>
  75. <para>Finally, to have the environment fully prepared for building the
  76. temporary tools, source the just-created user profile:</para>
  77. <screen><userinput>source ~/.bash_profile</userinput></screen>
  78. </sect1>