source: chapter04/settingenviron.xml@ 68ca4c9

6.0
Last change on this file since 68ca4c9 was 38bb44a, checked in by Gerard Beekmans <gerard@…>, 20 years ago

first round of printed layout fixes

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

  • Property mode set to 100644
File size: 4.3 KB
RevLine 
[673b0d8]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">
[69993f4]7<title>Setting Up the Environment</title>
[673b0d8]8<?dbhtml filename="settingenvironment.html"?>
9
[78349b7]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>
[673b0d8]14
[05616e2]15<screen><userinput>cat &gt; ~/.bash_profile &lt;&lt; "EOF"
[3890f5a]16<literal>exec env -i HOME=$HOME TERM=$TERM PS1='\u:\w\$ ' /bin/bash</literal>
[55851d6]17EOF</userinput></screen>
[673b0d8]18
[69993f4]19<para>When logged on as user <emphasis>lfs</emphasis>, the
20initial shell is usually a <emphasis>login</emphasis> shell which reads the
21<filename>/etc/profile</filename> of the host (probably containing
[78349b7]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
[a9e0b22]27<envar>HOME</envar>, <envar>TERM</envar>, and
28<envar>PS1</envar> variables. This ensures that no unwanted and
[78349b7]29potentially hazardous environment variables from the host system leak
30into the build environment. The technique used here achieves the goal
[69993f4]31of ensuring a clean environment.</para>
[673b0d8]32
[78349b7]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>
[673b0d8]38
[05616e2]39<screen><userinput>cat &gt; ~/.bashrc &lt;&lt; "EOF"
[3890f5a]40<literal>set +h
[673b0d8]41umask 022
42LFS=/mnt/lfs
43LC_ALL=POSIX
44PATH=/tools/bin:/bin:/usr/bin
[3890f5a]45export LFS LC_ALL PATH</literal>
[55851d6]46EOF</userinput></screen>
[673b0d8]47
48<para>The <command>set +h</command> command turns off
[e12c714]49<command>bash</command>'s hash function. Hashing is ordinarily a useful
50feature&mdash;<command>bash</command> uses a hash table to remember the
[4ea4bc4]51full path of executable files to avoid searching the <envar>PATH</envar> time
[69993f4]52and again to find the same executable. However, the new tools
[78349b7]53should be used as soon as they are installed. By switching off the
[a9e0b22]54hash function, the shell will always search the <envar>PATH</envar> when a program is
[69993f4]55to be run. As such, the shell will find the newly compiled
[78349b7]56tools in <filename class="directory">$LFS/tools</filename> as soon as
57they are available without remembering a previous version of the same
[69993f4]58program in a different location.</para>
[673b0d8]59
[38bb44a]60<beginpage/>
[78349b7]61<para>Setting the user file-creation mask (umask) to 022 ensures that newly
62created files and directories are only writable by their owner, but
63are readable and executable by anyone (assuming default modes are used
64by the open(2) system call, new files will end up with permission mode
65644 and directories with mode 755).</para>
[673b0d8]66
[a9e0b22]67<para>The <envar>LFS</envar> variable should be set to the
[78349b7]68chosen mount point.</para>
[673b0d8]69
[a9e0b22]70<para>The <envar>LC_ALL</envar> variable controls the
[78349b7]71localization of certain programs, making their messages follow the
72conventions of a specified country. If the host system uses a version
[a9e0b22]73of Glibc older than 2.2.4, having <envar>LC_ALL</envar> set to something other than
[78349b7]74<quote>POSIX</quote> or <quote>C</quote> (during this chapter) may
75cause issues if you exit the chroot environment and wish to return
[a9e0b22]76later. Setting <envar>LC_ALL</envar> to <quote>POSIX</quote>
[69993f4]77or <quote>C</quote> (the two are equivalent) ensures that
[673b0d8]78everything will work as expected in the chroot environment.</para>
79
[78349b7]80<para>By putting <filename class="directory">/tools/bin</filename>
[a9e0b22]81ahead of the standard <envar>PATH</envar>, all the programs installed in <xref
[78349b7]82linkend="chapter-temporary-tools"/> are picked up by the shell
[69993f4]83immediately after their installation. This, combined with turning off
84hashing, limits the risk that old programs from
[78349b7]85the host are being used when they should not be used any
86longer.</para>
[673b0d8]87
[78349b7]88<para>Finally, to have the environment fully prepared for building the
89temporary tools, source the just-created user profile:</para>
[673b0d8]90
91<screen><userinput>source ~/.bash_profile</userinput></screen>
92
93</sect1>
[78349b7]94
Note: See TracBrowser for help on using the repository browser.