source: chapter04/settingenviron.xml@ 78349b7

6.0
Last change on this file since 78349b7 was 78349b7, checked in by Gerard Beekmans <gerard@…>, 20 years ago

Completed global edits for upcoming 6.0 release

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

  • Property mode set to 100644
File size: 4.3 KB
Line 
1<?xml version="1.0" encoding="ISO-8859-1"?>
2<!DOCTYPE sect1 PUBLIC "-//OASIS//DTD DocBook XML V4.3//EN" "http://www.oasis-open.org/docbook/xml/4.3/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
10<para>Set up a good working environment by creating two new startup
11files for the <command>bash</command> shell. While logged in as user
12<emphasis>lfs</emphasis>, issue the
13following command to create a new <filename>.bash_profile</filename>:</para>
14
15<screen><userinput>cat &gt; ~/.bash_profile &lt;&lt; "EOF"
16exec env -i HOME=$HOME TERM=$TERM PS1='\u:\w\$ ' /bin/bash
17EOF</userinput></screen>
18
19<para>Normally when logged on as user <emphasis>lfs</emphasis>, the
20initial shell is a <emphasis>login</emphasis> shell which reads the
21<filename>/etc/profile</filename> of your host (probably containing
22some settings and environment variables) and then
23<filename>.bash_profile</filename>. The <command>exec env
24-i.../bin/bash</command> command in the
25<filename>.bash_profile</filename> file replaces the running shell
26with a new one with a completely empty environment, except for the
27<emphasis>HOME</emphasis>, <emphasis>TERM</emphasis>, and
28<emphasis>PS1</emphasis> variables. This ensures that no unwanted and
29potentially hazardous environment variables from the host system leak
30into the build environment. The technique used here achieves the goal
31of enforcing a clean environment.</para>
32
33<para>The new instance of the shell is a <emphasis>non-login</emphasis>
34shell, which does not read the <filename>/etc/profile</filename> or
35<filename>.bash_profile</filename> files, but rather reads the
36<filename>.bashrc</filename> file instead. Create the
37<filename>.bashrc</filename> file now:</para>
38
39<screen><userinput>cat &gt; ~/.bashrc &lt;&lt; "EOF"
40set +h
41umask 022
42LFS=/mnt/lfs
43LC_ALL=POSIX
44PATH=/tools/bin:/bin:/usr/bin
45export LFS LC_ALL PATH
46EOF</userinput></screen>
47
48<para>The <command>set +h</command> command turns off
49<command>bash</command>'s hash function. Hashing is
50ordinarily a useful feature -- bash uses a hash table to remember the
51full pathnames of executable files to avoid searching the PATH time
52and time again to find the same executable. However, the new tools
53should be used as soon as they are installed. By switching off the
54hash function, the shell will always search the PATH when a program is
55requested to be run. As such, the shell will find our newly compiled
56tools in <filename class="directory">$LFS/tools</filename> as soon as
57they are available without remembering a previous version of the same
58program (name wise) in a different location.</para>
59
60<para>Setting the user file-creation mask (umask) to 022 ensures that newly
61created files and directories are only writable by their owner, but
62are readable and executable by anyone (assuming default modes are used
63by the open(2) system call, new files will end up with permission mode
64644 and directories with mode 755).</para>
65
66<para>The <emphasis>LFS</emphasis> variable should be set to the
67chosen mount point.</para>
68
69<para>The <emphasis>LC_ALL</emphasis> variable controls the
70localization of certain programs, making their messages follow the
71conventions of a specified country. If the host system uses a version
72of Glibc older than 2.2.4, having LC_ALL set to something other than
73<quote>POSIX</quote> or <quote>C</quote> (during this chapter) may
74cause issues if you exit the chroot environment and wish to return
75later. By setting <emphasis>LC_ALL</emphasis> to <quote>POSIX</quote>
76or <quote>C</quote> (the two are equivalent), we ensure that
77everything will work as expected in the chroot environment.</para>
78
79<para>By putting <filename class="directory">/tools/bin</filename>
80ahead of the standard PATH, all the programs installed in <xref
81linkend="chapter-temporary-tools"/> are picked up by the shell
82imemdiately after their installation. This coupled with the fact that
83hashing has been turned off, there is no risk that old programs from
84the host are being used when they should not be used any
85longer.</para>
86
87<para>Finally, to have the environment fully prepared for building the
88temporary tools, source the just-created user profile:</para>
89
90<screen><userinput>source ~/.bash_profile</userinput></screen>
91
92</sect1>
93
Note: See TracBrowser for help on using the repository browser.