source: chapter04/settingenviron.xml@ ae79672

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 6.1 6.1.1 6.3 6.4 6.5 6.6 6.7 6.8 7.0 7.1 7.2 7.3 7.4 7.5 7.5-systemd 7.6 7.6-systemd 7.7 7.7-systemd 7.8 7.8-systemd 7.9 7.9-systemd 8.0 8.1 8.2 8.3 8.4 9.0 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 ae79672 was ae79672, checked in by Manuel Canales Esparcia <manuel@…>, 19 years ago

More text dropped.

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

  • Property mode set to 100644
File size: 3.8 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<!--
11<para>We're going to set up a good working environment by creating two new
12startup files for the <command>bash</command> shell. While logged in as
13user <emphasis>lfs</emphasis>, issue the following command to create a new
14<filename>.bash_profile</filename>:</para>
15-->
16
17<screen><userinput>cat &gt; ~/.bash_profile &lt;&lt; "EOF"
18exec env -i HOME=$HOME TERM=$TERM PS1='\u:\w\$ ' /bin/bash
19EOF</userinput></screen>
20
21<!--
22<para>Normally, when you log on as user <emphasis>lfs</emphasis>,
23the initial shell is a <emphasis>login</emphasis> shell which reads the
24<filename>/etc/profile</filename> of your host (probably containing some
25settings of environment variables) and then <filename>.bash_profile</filename>.
26The <command>exec env -i ... /bin/bash</command> command in the latter file
27replaces the running shell with a new one with a completely empty environment,
28except for the HOME, TERM and PS1 variables. This ensures that no unwanted and
29potentially hazardous environment variables from the host system leak into our
30build environment. The technique used here is a little strange, but it achieves
31the goal of enforcing a clean environment.</para>
32
33<para>The new instance of the shell is a <emphasis>non-login</emphasis> shell,
34which doesn't read the <filename>/etc/profile</filename> or
35<filename>.bash_profile</filename> files, but reads the
36<filename>.bashrc</filename> file instead. Create this latter file now:</para>
37-->
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<!--
49<para>The <command>set +h</command> command turns off
50<command>bash</command>'s hash function. Normally hashing is a useful
51feature: <command>bash</command> uses a hash table to remember the
52full pathnames of executable files to avoid searching the PATH time and time
53again to find the same executable. However, we'd like the new tools to be
54used as soon as they are installed. By switching off the hash function, our
55<quote>interactive</quote> commands (<command>make</command>,
56<command>patch</command>, <command>sed</command>,
57<command>cp</command> and so forth) will always use
58the newest available version during the build process.</para>
59
60<para>Setting the user file-creation mask to 022 ensures that newly created
61files and directories are only writable for their owner, but readable and
62executable for anyone.</para>
63
64<para>The LFS variable should of course be set to the mount point you
65chose.</para>
66
67<para>The LC_ALL variable controls the localization of certain programs,
68making their messages follow the conventions of a specified country. If your
69host system uses a version of Glibc older than 2.2.4,
70having LC_ALL set to something other than <quote>POSIX</quote> or
71<quote>C</quote> during this chapter may cause trouble if you exit the chroot
72environment and wish to return later. By setting LC_ALL to <quote>POSIX</quote>
73(or <quote>C</quote>, the two are equivalent) we ensure that
74everything will work as expected in the chroot environment.</para>
75
76<para>We prepend <filename class="directory">/tools/bin</filename> to the standard PATH so
77that, as we move along through this chapter, the tools we build will get used
78during the rest of the building process.</para>
79
80<para>Finally, to have our environment fully prepared for building the
81temporary tools, source the just-created profile:</para>
82-->
83
84<screen><userinput>source ~/.bash_profile</userinput></screen>
85
86</sect1>
Note: See TracBrowser for help on using the repository browser.