source: chapter04/settingenviron.xml@ dd61c77

xry111/clfs-ng
Last change on this file since dd61c77 was dd61c77, checked in by Xi Ruoyao <xry111@…>, 19 months ago

Merge remote-tracking branch 'origin/trunk' into xry111/clfs-ng

  • Property mode set to 100644
File size: 9.0 KB
RevLine 
[673b0d8]1<?xml version="1.0" encoding="ISO-8859-1"?>
[b06ca36]2<!DOCTYPE sect1 PUBLIC "-//OASIS//DTD DocBook XML V4.5//EN"
3 "http://www.oasis-open.org/docbook/xml/4.5/docbookx.dtd" [
[673b0d8]4 <!ENTITY % general-entities SYSTEM "../general.ent">
5 %general-entities;
6]>
[6a3b6af]7
[afcfd74]8<sect1 id="ch-preps-settingenviron">
[6a3b6af]9 <?dbhtml filename="settingenvironment.html"?>
10
11 <title>Setting Up the Environment</title>
[673b0d8]12
[6a3b6af]13 <para>Set up a good working environment by creating two new startup files
14 for the <command>bash</command> shell. While logged in as user
15 <systemitem class="username">lfs</systemitem>, issue the following command
16 to create a new <filename>.bash_profile</filename>:</para>
[81fd230]17
[05616e2]18<screen><userinput>cat &gt; ~/.bash_profile &lt;&lt; "EOF"
[d72e04a]19<literal>exec env -i HOME=$HOME TERM=$TERM PS1='\u:\w\$ ' /bin/bash</literal>
[55851d6]20EOF</userinput></screen>
[673b0d8]21
[aa9ade1]22 <para>When logged on as user <systemitem class="username">lfs</systemitem>
23 or switched to the &lfs-user; user using a <command>su</command> command
24 with <quote><parameter>-</parameter></quote> option,
25 the initial shell is a <emphasis>login</emphasis> shell which reads
[6a3b6af]26 the <filename>/etc/profile</filename> of the host (probably containing some
27 settings and environment variables) and then <filename>.bash_profile</filename>.
28 The <command>exec env -i.../bin/bash</command> command in the
29 <filename>.bash_profile</filename> file replaces the running shell with a new
30 one with a completely empty environment, except for the <envar>HOME</envar>,
31 <envar>TERM</envar>, and <envar>PS1</envar> variables. This ensures that no
32 unwanted and potentially hazardous environment variables from the host system
33 leak into the build environment. The technique used here achieves the goal of
34 ensuring a clean environment.</para>
[81fd230]35
[6a3b6af]36 <para>The new instance of the shell is a <emphasis>non-login</emphasis>
[ec7b0466]37 shell, which does not read, and execute, the contents of the <filename>/etc/profile</filename> or
[df43be1]38 <filename>.bash_profile</filename> files, but rather reads, and executes, the
[6a3b6af]39 <filename>.bashrc</filename> file instead. Create the
40 <filename>.bashrc</filename> file now:</para>
[81fd230]41
[05616e2]42<screen><userinput>cat &gt; ~/.bashrc &lt;&lt; "EOF"
[d72e04a]43<literal>set +h
[673b0d8]44umask 022
45LFS=/mnt/lfs
46LC_ALL=POSIX
[0bd1c05]47LFS_TGT=<replaceable>x86_64</replaceable>-lfs-linux-gnu
[b454589]48PATH=/usr/bin
[a97aa3d]49if [ ! -L /bin ]; then PATH=/bin:$PATH; fi
[b454589]50PATH=$LFS/tools/bin:$PATH
[df77b24]51CONFIG_SITE=$LFS/usr/share/config.site
52export LFS LC_ALL LFS_TGT PATH CONFIG_SITE</literal>
[55851d6]53EOF</userinput></screen>
[673b0d8]54
[df43be1]55 <variablelist>
[ee714d3]56 <title>The meaning of the settings in <filename>.bashrc</filename></title>
[df43be1]57
58 <varlistentry>
59 <term><parameter>set +h</parameter></term>
60 <listitem>
[6a3b6af]61 <para>The <command>set +h</command> command turns off
62 <command>bash</command>'s hash function. Hashing is ordinarily a useful
63 feature&mdash;<command>bash</command> uses a hash table to remember the
[ec7b0466]64 full path to executable files to avoid searching the <envar>PATH</envar>
[6a3b6af]65 time and again to find the same executable. However, the new tools should
[ec7b0466]66 be used as soon as they are installed. Switching off the hash function forces
67 the shell to search the <envar>PATH</envar> whenever a program is to
[6a3b6af]68 be run. As such, the shell will find the newly compiled tools in
[490dc153]69 <filename class="directory">$LFS/tools/bin</filename> as soon as they are
70 available without remembering a previous version of the same program
71 provided by the host distro, in
72 <filename class='directory'>/usr/bin</filename> or
73 <filename class='directory'>/bin</filename>.</para>
[df43be1]74 </listitem>
75 </varlistentry>
[81fd230]76
[df43be1]77 <varlistentry>
78 <term><parameter>umask 022</parameter></term>
79 <listitem>
[6a3b6af]80 <para>Setting the user file-creation mask (umask) to 022 ensures that newly
81 created files and directories are only writable by their owner, but are
82 readable and executable by anyone (assuming default modes are used by the
83 <function>open(2)</function> system call, new files will end up with permission
84 mode 644 and directories with mode 755).</para>
[df43be1]85 </listitem>
86 </varlistentry>
[81fd230]87
[df43be1]88 <varlistentry>
89 <term><parameter>LFS=/mnt/lfs</parameter></term>
90 <listitem>
[6a3b6af]91 <para>The <envar>LFS</envar> variable should be set to the chosen mount
92 point.</para>
[df43be1]93 </listitem>
94 </varlistentry>
[81fd230]95
[df43be1]96 <varlistentry>
97 <term><parameter>LC_ALL=POSIX</parameter></term>
98 <listitem>
[6a3b6af]99 <para>The <envar>LC_ALL</envar> variable controls the localization of certain
100 programs, making their messages follow the conventions of a specified country.
[448e226]101 Setting <envar>LC_ALL</envar> to <quote>POSIX</quote> or <quote>C</quote>
102 (the two are equivalent) ensures that everything will work as expected in
103 the chroot environment.</para>
[df43be1]104 </listitem>
105 </varlistentry>
[81fd230]106
[df43be1]107 <varlistentry>
[0bd1c05]108 <term><parameter>LFS_TGT=<replaceable>x86_64</replaceable>-lfs-linux-gnu</parameter></term>
[df43be1]109 <listitem>
[4e82d47]110 <para>The <envar>LFS_TGT</envar> variable sets a non-default, but compatible machine
111 description for use when building our cross compiler and linker and when cross
112 compiling our temporary toolchain. More information is contained in
[0bd1c05]113 <xref linkend="ch-tools-toolchaintechnotes" role=""/>.
114 If you are not building for 64-bit x86, replace
115 <replaceable>x86_64</replaceable> with some value suitable for your target
116 machine, for example <literal>i686</literal> for 32-bit x86.</para>
[df43be1]117 </listitem>
118 </varlistentry>
[4e82d47]119
[df43be1]120 <varlistentry>
[b454589]121 <term><parameter>PATH=/usr/bin</parameter></term>
122 <listitem>
[ec7b0466]123 <para>Many modern Linux distributions have merged <filename
[b454589]124 class="directory">/bin</filename> and <filename
125 class="directory">/usr/bin</filename>. When this is the case, the standard
[ec7b0466]126 <envar>PATH</envar> variable should be set to <filename
[b454589]127 class="directory">/usr/bin/</filename> for the <xref
128 linkend="chapter-temporary-tools"/> environment. When this is not the
129 case, the following line adds <filename class="directory">/bin</filename>
130 to the path.</para>
131 </listitem>
132 </varlistentry>
133
134 <varlistentry>
[a97aa3d]135 <term><parameter>if [ ! -L /bin ]; then PATH=/bin:$PATH; fi</parameter></term>
[b454589]136 <listitem>
137 <para>If <filename class="directory">/bin</filename> is not a symbolic
138 link, then it has to be added to the <envar>PATH</envar> variable.</para>
139 </listitem>
140 </varlistentry>
141
142 <varlistentry>
143 <term><parameter>PATH=$LFS/tools/bin:$PATH</parameter></term>
[df43be1]144 <listitem>
[efcb393]145 <para>By putting <filename class="directory">$LFS/tools/bin</filename> ahead of the
[b454589]146 standard <envar>PATH</envar>, the cross-compiler installed at the beginning
[ee714d3]147 of <xref linkend="chapter-cross-tools"/> is picked up by the shell
[b454589]148 immediately after its installation. This, combined with turning off hashing,
[ec7b0466]149 limits the risk that the compiler from the host is used instead of the
[b454589]150 cross-compiler.</para>
[df43be1]151 </listitem>
152 </varlistentry>
153
154 <varlistentry>
[df77b24]155 <term><parameter>CONFIG_SITE=$LFS/usr/share/config.site</parameter></term>
156 <listitem>
157 <para>In <xref linkend="chapter-cross-tools"/> and
158 <xref linkend="chapter-temporary-tools"/>, if this variable is not set,
159 <command>configure</command> scripts
[a2d41cf2]160 may attempt to load configuration items specific to some distributions from
161 <filename>/usr/share/config.site</filename> on the host system. Override
162 it to prevent potential contamination from the host.</para>
[df77b24]163 </listitem>
164 </varlistentry>
165
166 <varlistentry>
167 <term><parameter>export ...</parameter></term>
[df43be1]168 <listitem>
169 <para>While the above commands have set some variables, in order
[ee714d3]170 to make them visible within any sub-shells, we export them.</para>
[df43be1]171 </listitem>
172 </varlistentry>
173
174 </variablelist>
[81fd230]175
[686c88b]176 <important>
177
178 <para>Several commercial distributions add a non-documented instantiation
179 of <filename>/etc/bash.bashrc</filename> to the initialization of
[3a38c46]180 <command>bash</command>. This file has the potential to modify the
181 <systemitem class="username">lfs</systemitem>
[dbb9122]182 user's environment in ways that can affect the building of critical LFS
[3a38c46]183 packages. To make sure the <systemitem class="username">lfs</systemitem>
[c0c616a]184 user's environment is clean, check for the
[686c88b]185 presence of <filename>/etc/bash.bashrc</filename> and, if present, move it
[3a38c46]186 out of the way. As the <systemitem class="username">root</systemitem>
187 user, run:</para>
[686c88b]188
[707c4d3]189 <screen role="nodump"><userinput>[ ! -e /etc/bash.bashrc ] || mv -v /etc/bash.bashrc /etc/bash.bashrc.NOUSE</userinput></screen>
[686c88b]190
[ee0638f]191 <para>After use of the <systemitem class="username">lfs</systemitem>
192 user is finished at the beginning of <xref
[686c88b]193 linkend="chapter-chroot-temporary-tools"/>, you can restore
[c37e846]194 <filename>/etc/bash.bashrc</filename> (if desired).</para>
[3a38c46]195
196 <para>Note that the LFS Bash package we will build in
197 <xref linkend="ch-system-bash"/> is not configured to load or execute
198 <filename>/etc/bash.bashrc</filename>, so this file is useless on a
199 completed LFS system.</para>
[686c88b]200 </important>
201
[6a3b6af]202 <para>Finally, to have the environment fully prepared for building the
[ec7b0466]203 temporary tools, force the <command>bash</command> shell to read
204 the new user profile:</para>
[81fd230]205
[673b0d8]206<screen><userinput>source ~/.bash_profile</userinput></screen>
207
208</sect1>
Note: See TracBrowser for help on using the repository browser.