source: chapter04/settingenviron.xml@ 88ec930

multilib-10.1
Last change on this file since 88ec930 was 88ec930, checked in by Thomas Trepl <thomas@…>, 4 years ago

MultiLib: Merge changes from trunk

git-svn-id: http://svn.linuxfromscratch.org/LFS/branches/multilib@11801 4aa44e1e-78dd-0310-a6d2-fbcd4c07a689

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