source: chapter04/settingenviron.xml@ afcfd74

10.0 10.0-rc1 10.1 10.1-rc1 11.0 11.0-rc1 11.0-rc2 11.0-rc3 11.1 11.1-rc1 11.2 11.2-rc1 11.3 11.3-rc1 12.0 12.0-rc1 12.1 12.1-rc1 9.1 arm bdubbs/gcc13 ml-11.0 multilib renodr/libudev-from-systemd s6-init trunk xry111/arm64 xry111/arm64-12.0 xry111/clfs-ng xry111/lfs-next xry111/loongarch xry111/loongarch-12.0 xry111/loongarch-12.1 xry111/mips64el xry111/pip3 xry111/rust-wip-20221008 xry111/update-glibc
Last change on this file since afcfd74 was afcfd74, checked in by Pierre Labastie <pieere@…>, 4 years ago

Remove unused files and make
idref's more regular

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

  • Property mode set to 100644
File size: 4.6 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 the <filename>/etc/profile</filename> or
36 <filename>.bash_profile</filename> files, but rather reads the
37 <filename>.bashrc</filename> file instead. Create the
38 <filename>.bashrc</filename> file now:</para>
39
40<screen><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
50 <para>The <command>set +h</command> command turns off
51 <command>bash</command>'s hash function. Hashing is ordinarily a useful
52 feature&mdash;<command>bash</command> uses a hash table to remember the
53 full path of executable files to avoid searching the <envar>PATH</envar>
54 time and again to find the same executable. However, the new tools should
55 be used as soon as they are installed. By switching off the hash function,
56 the shell will always search the <envar>PATH</envar> when a program is to
57 be run. As such, the shell will find the newly compiled tools in
58 <filename class="directory">$LFS/tools</filename> as soon as they are
59 available without remembering a previous version of the same program in a
60 different location.</para>
61
62 <para>Setting the user file-creation mask (umask) to 022 ensures that newly
63 created files and directories are only writable by their owner, but are
64 readable and executable by anyone (assuming default modes are used by the
65 <function>open(2)</function> system call, new files will end up with permission
66 mode 644 and directories with mode 755).</para>
67
68 <para>The <envar>LFS</envar> variable should be set to the chosen mount
69 point.</para>
70
71 <para>The <envar>LC_ALL</envar> variable controls the localization of certain
72 programs, making their messages follow the conventions of a specified country.
73 Setting <envar>LC_ALL</envar> to <quote>POSIX</quote> or <quote>C</quote>
74 (the two are equivalent) ensures that everything will work as expected in
75 the chroot environment.</para>
76
77 <para>The <envar>LFS_TGT</envar> variable sets a non-default, but compatible machine
78 description for use when building our cross compiler and linker and when cross
79 compiling our temporary toolchain. More information is contained in
80 <xref linkend="ch-tools-toolchaintechnotes" role=""/>.</para>
81
82 <para>By putting <filename class="directory">/tools/bin</filename> ahead of the
83 standard <envar>PATH</envar>, all the programs installed in <xref
84 linkend="chapter-temporary-tools"/> are picked up by the shell immediately after
85 their installation. This, combined with turning off hashing, limits the risk
86 that old programs are used from the host when the same programs are available in
87 the chapter 5 environment.</para>
88
89 <para>Finally, to have the environment fully prepared for building the
90 temporary tools, source the just-created user profile:</para>
91
92<screen><userinput>source ~/.bash_profile</userinput></screen>
93
94</sect1>
Note: See TracBrowser for help on using the repository browser.