settingenviron.xml 9.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213
  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 contents 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=/usr/bin
  40. if [ ! -L /bin ]; then PATH=/bin:$PATH; fi
  41. PATH=$LFS/tools/bin:$PATH
  42. CONFIG_SITE=$LFS/usr/share/config.site
  43. export LFS LC_ALL LFS_TGT PATH CONFIG_SITE</literal>
  44. EOF</userinput></screen>
  45. <screen arch="ml_32,ml_x32,ml_all"><userinput>cat &gt; ~/.bashrc &lt;&lt; "EOF"
  46. <literal>set +h
  47. umask 022
  48. LFS=/mnt/lfs
  49. LC_ALL=POSIX
  50. LFS_TGT=x86_64-lfs-linux-gnu
  51. LFS_TGT32=i686-lfs-linux-gnu
  52. LFS_TGTX32=x86_64-lfs-linux-gnux32
  53. PATH=/usr/bin
  54. if [ ! -L /bin ]; then PATH=/bin:$PATH; fi
  55. PATH=$LFS/tools/bin:$PATH
  56. export LFS LC_ALL LFS_TGT LFS_TGT32 LFS_TGTX32 PATH</literal>
  57. EOF</userinput></screen>
  58. <variablelist>
  59. <title>The meaning of the settings in <filename>.bashrc</filename></title>
  60. <varlistentry>
  61. <term><parameter>set +h</parameter></term>
  62. <listitem>
  63. <para>The <command>set +h</command> command turns off
  64. <command>bash</command>'s hash function. Hashing is ordinarily a useful
  65. feature&mdash;<command>bash</command> uses a hash table to remember the
  66. full path of executable files to avoid searching the <envar>PATH</envar>
  67. time and again to find the same executable. However, the new tools should
  68. be used as soon as they are installed. By switching off the hash function,
  69. the shell will always search the <envar>PATH</envar> when a program is to
  70. be run. As such, the shell will find the newly compiled tools in
  71. <filename class="directory">$LFS/tools</filename> as soon as they are
  72. available without remembering a previous version of the same program in a
  73. different location.</para>
  74. </listitem>
  75. </varlistentry>
  76. <varlistentry>
  77. <term><parameter>umask 022</parameter></term>
  78. <listitem>
  79. <para>Setting the user file-creation mask (umask) to 022 ensures that newly
  80. created files and directories are only writable by their owner, but are
  81. readable and executable by anyone (assuming default modes are used by the
  82. <function>open(2)</function> system call, new files will end up with permission
  83. mode 644 and directories with mode 755).</para>
  84. </listitem>
  85. </varlistentry>
  86. <varlistentry>
  87. <term><parameter>LFS=/mnt/lfs</parameter></term>
  88. <listitem>
  89. <para>The <envar>LFS</envar> variable should be set to the chosen mount
  90. point.</para>
  91. </listitem>
  92. </varlistentry>
  93. <varlistentry>
  94. <term><parameter>LC_ALL=POSIX</parameter></term>
  95. <listitem>
  96. <para>The <envar>LC_ALL</envar> variable controls the localization of certain
  97. programs, making their messages follow the conventions of a specified country.
  98. Setting <envar>LC_ALL</envar> to <quote>POSIX</quote> or <quote>C</quote>
  99. (the two are equivalent) ensures that everything will work as expected in
  100. the chroot environment.</para>
  101. </listitem>
  102. </varlistentry>
  103. <varlistentry>
  104. <term><parameter>LFS_TGT=(uname -m)-lfs-linux-gnu</parameter></term>
  105. <listitem>
  106. <para>The <envar>LFS_TGT</envar> variable sets a non-default, but compatible machine
  107. description for use when building our cross compiler and linker and when cross
  108. compiling our temporary toolchain. More information is contained in
  109. <xref linkend="ch-tools-toolchaintechnotes" role=""/>.</para>
  110. </listitem>
  111. </varlistentry>
  112. <varlistentry>
  113. <term><parameter>PATH=/usr/bin</parameter></term>
  114. <listitem>
  115. <para>Many modern linux distributions have merged <filename
  116. class="directory">/bin</filename> and <filename
  117. class="directory">/usr/bin</filename>. When this is the case, the standard
  118. <envar>PATH</envar> variable needs just to be set to <filename
  119. class="directory">/usr/bin/</filename> for the <xref
  120. linkend="chapter-temporary-tools"/> environment. When this is not the
  121. case, the following line adds <filename class="directory">/bin</filename>
  122. to the path.</para>
  123. </listitem>
  124. </varlistentry>
  125. <varlistentry>
  126. <term><parameter>if [ ! -L /bin ]; then PATH=/bin:$PATH; fi</parameter></term>
  127. <listitem>
  128. <para>If <filename class="directory">/bin</filename> is not a symbolic
  129. link, then it has to be added to the <envar>PATH</envar> variable.</para>
  130. </listitem>
  131. </varlistentry>
  132. <varlistentry>
  133. <term><parameter>PATH=$LFS/tools/bin:$PATH</parameter></term>
  134. <listitem>
  135. <para>By putting <filename class="directory">$LFS/tools/bin</filename> ahead of the
  136. standard <envar>PATH</envar>, the cross-compiler installed at the beginning
  137. of <xref linkend="chapter-cross-tools"/> is picked up by the shell
  138. immediately after its installation. This, combined with turning off hashing,
  139. limits the risk that the compiler from the host be used instead of the
  140. cross-compiler.</para>
  141. </listitem>
  142. </varlistentry>
  143. <varlistentry>
  144. <term><parameter>CONFIG_SITE=$LFS/usr/share/config.site</parameter></term>
  145. <listitem>
  146. <para>In <xref linkend="chapter-cross-tools"/> and
  147. <xref linkend="chapter-temporary-tools"/>, if this variable is not set,
  148. <command>configure</command> scripts
  149. may attempt to load configuration items specific to some distributions from
  150. <filename>/usr/share/config.site</filename> on the host system. Override
  151. it to prevent potential contamination from the host.</para>
  152. </listitem>
  153. </varlistentry>
  154. <varlistentry>
  155. <term><parameter>export ...</parameter></term>
  156. <listitem>
  157. <para>While the above commands have set some variables, in order
  158. to make them visible within any sub-shells, we export them.</para>
  159. </listitem>
  160. </varlistentry>
  161. </variablelist>
  162. <important>
  163. <para>Several commercial distributions add a non-documented instantiation
  164. of <filename>/etc/bash.bashrc</filename> to the initialization of
  165. <command>bash</command>. This file has the potential to modify the
  166. <systemitem class="username">lfs</systemitem>
  167. user's environment in ways that can affect the building of critical LFS
  168. packages. To make sure the <systemitem class="username">lfs</systemitem>
  169. user's environment is clean, check for the
  170. presence of <filename>/etc/bash.bashrc</filename> and, if present, move it
  171. out of the way. As the <systemitem class="username">root</systemitem>
  172. user, run:</para>
  173. <screen role="nodump"><userinput>[ ! -e /etc/bash.bashrc ] || mv -v /etc/bash.bashrc /etc/bash.bashrc.NOUSE</userinput></screen>
  174. <para>After use of the <systemitem class="username">lfs</systemitem>
  175. user is finished at the beginning of <xref
  176. linkend="chapter-chroot-temporary-tools"/>, you can restore
  177. <filename>/etc/bash.bashrc</filename> (if desired).</para>
  178. <para>Note that the LFS Bash package we will build in
  179. <xref linkend="ch-system-bash"/> is not configured to load or execute
  180. <filename>/etc/bash.bashrc</filename>, so this file is useless on a
  181. completed LFS system.</para>
  182. </important>
  183. <para>Finally, to have the environment fully prepared for building the
  184. temporary tools, source the just-created user profile:</para>
  185. <screen><userinput>source ~/.bash_profile</userinput></screen>
  186. </sect1>