settingenviron.xml 6.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148
  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-preps-settingenviron">
  8. <?dbhtml filename="settingenvironment.html"?>
  9. <title>Setting Up the Environment</title>
  10. <para>Set up a good working environment by creating two new startup files
  11. for the <command>bash</command> shell. While logged in as user
  12. <systemitem class="username">lfs</systemitem>, issue the following command
  13. to create a new <filename>.bash_profile</filename>:</para>
  14. <screen><userinput>cat &gt; ~/.bash_profile &lt;&lt; "EOF"
  15. <literal>exec env -i HOME=$HOME TERM=$TERM PS1='\u:\w\$ ' /bin/bash</literal>
  16. EOF</userinput></screen>
  17. <para>When logged on as user <systemitem class="username">lfs</systemitem>,
  18. the initial shell is usually a <emphasis>login</emphasis> shell which reads
  19. the <filename>/etc/profile</filename> of the host (probably containing some
  20. settings and environment variables) and then <filename>.bash_profile</filename>.
  21. The <command>exec env -i.../bin/bash</command> command in the
  22. <filename>.bash_profile</filename> file replaces the running shell with a new
  23. one with a completely empty environment, except for the <envar>HOME</envar>,
  24. <envar>TERM</envar>, and <envar>PS1</envar> variables. This ensures that no
  25. unwanted and potentially hazardous environment variables from the host system
  26. leak into the build environment. The technique used here achieves the goal of
  27. ensuring a clean environment.</para>
  28. <para>The new instance of the shell is a <emphasis>non-login</emphasis>
  29. shell, which does not read, and execute, the conten of <filename>/etc/profile</filename> or
  30. <filename>.bash_profile</filename> files, but rather reads, and executes, the
  31. <filename>.bashrc</filename> file instead. Create the
  32. <filename>.bashrc</filename> file now:</para>
  33. <screen arch="default"><userinput>cat &gt; ~/.bashrc &lt;&lt; "EOF"
  34. <literal>set +h
  35. umask 022
  36. LFS=/mnt/lfs
  37. LC_ALL=POSIX
  38. LFS_TGT=$(uname -m)-lfs-linux-gnu
  39. PATH=/tools/bin:/bin:/usr/bin
  40. export LFS LC_ALL LFS_TGT PATH</literal>
  41. EOF</userinput></screen>
  42. <screen arch="ml_32,ml_x32,ml_all"><userinput>cat &gt; ~/.bashrc &lt;&lt; "EOF"
  43. <literal>set +h
  44. umask 022
  45. LFS=/mnt/lfs
  46. LC_ALL=POSIX
  47. LFS_TGT=x86_64-lfs-linux-gnu
  48. LFS_TGT32=i686-lfs-linux-gnu
  49. LFS_TGTX32=x86_64-lfs-linux-gnux32
  50. PATH=/tools/bin:/bin:/usr/bin
  51. export LFS LC_ALL LFS_TGT LFS_TGT32 LFS_TGTX32 PATH</literal>
  52. EOF</userinput></screen>
  53. <variablelist>
  54. <title>The meaning of the command line options in <filename>.bashrc</filename></title>
  55. <varlistentry>
  56. <term><parameter>set +h</parameter></term>
  57. <listitem>
  58. <para>The <command>set +h</command> command turns off
  59. <command>bash</command>'s hash function. Hashing is ordinarily a useful
  60. feature&mdash;<command>bash</command> uses a hash table to remember the
  61. full path of executable files to avoid searching the <envar>PATH</envar>
  62. time and again to find the same executable. However, the new tools should
  63. be used as soon as they are installed. By switching off the hash function,
  64. the shell will always search the <envar>PATH</envar> when a program is to
  65. be run. As such, the shell will find the newly compiled tools in
  66. <filename class="directory">$LFS/tools</filename> as soon as they are
  67. available without remembering a previous version of the same program in a
  68. different location.</para>
  69. </listitem>
  70. </varlistentry>
  71. <varlistentry>
  72. <term><parameter>umask 022</parameter></term>
  73. <listitem>
  74. <para>Setting the user file-creation mask (umask) to 022 ensures that newly
  75. created files and directories are only writable by their owner, but are
  76. readable and executable by anyone (assuming default modes are used by the
  77. <function>open(2)</function> system call, new files will end up with permission
  78. mode 644 and directories with mode 755).</para>
  79. </listitem>
  80. </varlistentry>
  81. <varlistentry>
  82. <term><parameter>LFS=/mnt/lfs</parameter></term>
  83. <listitem>
  84. <para>The <envar>LFS</envar> variable should be set to the chosen mount
  85. point.</para>
  86. </listitem>
  87. </varlistentry>
  88. <varlistentry>
  89. <term><parameter>LC_ALL=POSIX</parameter></term>
  90. <listitem>
  91. <para>The <envar>LC_ALL</envar> variable controls the localization of certain
  92. programs, making their messages follow the conventions of a specified country.
  93. Setting <envar>LC_ALL</envar> to <quote>POSIX</quote> or <quote>C</quote>
  94. (the two are equivalent) ensures that everything will work as expected in
  95. the chroot environment.</para>
  96. </listitem>
  97. </varlistentry>
  98. <varlistentry>
  99. <term><parameter>LFS_TGT=(uname -m)-lfs-linux-gnu</parameter></term>
  100. <listitem>
  101. <para>The <envar>LFS_TGT</envar> variable sets a non-default, but compatible machine
  102. description for use when building our cross compiler and linker and when cross
  103. compiling our temporary toolchain. More information is contained in
  104. <xref linkend="ch-tools-toolchaintechnotes" role=""/>.</para>
  105. </listitem>
  106. </varlistentry>
  107. <varlistentry>
  108. <term><parameter>PATH=/tools/bin:/bin:/usr/bin</parameter></term>
  109. <listitem>
  110. <para>By putting <filename class="directory">/tools/bin</filename> ahead of the
  111. standard <envar>PATH</envar>, all the programs installed in <xref
  112. linkend="chapter-temporary-tools"/> are picked up by the shell immediately after
  113. their installation. This, combined with turning off hashing, limits the risk
  114. that old programs are used from the host when the same programs are available in
  115. the Chapter 5 environment.</para>
  116. </listitem>
  117. </varlistentry>
  118. <varlistentry>
  119. <term><parameter>export LFS LC_ALL LFS_TGT PATH</parameter></term>
  120. <listitem>
  121. <para>While the above commands have set some variables, in order
  122. to make them visible within any sub-shells, we export them</para>
  123. </listitem>
  124. </varlistentry>
  125. </variablelist>
  126. <para>Finally, to have the environment fully prepared for building the
  127. temporary tools, source the just-created user profile:</para>
  128. <screen><userinput>source ~/.bash_profile</userinput></screen>
  129. </sect1>