[bf8c11f] | 1 | <?xml version="1.0" encoding="ISO-8859-1"?>
|
---|
| 2 | <!DOCTYPE sect1 PUBLIC "-//OASIS//DTD DocBook XML V4.4//EN"
|
---|
| 3 | "http://www.oasis-open.org/docbook/xml/4.4/docbookx.dtd" [
|
---|
| 4 | <!ENTITY % general-entities SYSTEM "../../general.ent">
|
---|
| 5 | %general-entities;
|
---|
| 6 | ]>
|
---|
| 7 |
|
---|
| 8 | <sect1 id="ch-boot-settingenviron">
|
---|
| 9 | <?dbhtml filename="settingenvironment.html"?>
|
---|
| 10 |
|
---|
| 11 | <title>Setting Up the Environment</title>
|
---|
| 12 |
|
---|
[cbfa0a3] | 13 | <para>The new instance of the shell that will start when the system is booted is a <emphasis>login</emphasis>
|
---|
| 14 | shell, which will read <filename>.bash_profile</filename> file. Create the
|
---|
[3c2fa25] | 15 | <filename>.bash_profile</filename> file now:</para>
|
---|
[bf8c11f] | 16 |
|
---|
[3c2fa25] | 17 | <screen><userinput>cat > ${LFS}/root/.bash_profile << "EOF"
|
---|
[bf8c11f] | 18 | <literal>PS1='\u:\w\$ '
|
---|
| 19 | LC_ALL=POSIX
|
---|
| 20 | PATH=/bin:/usr/bin:/sbin:/usr/sbin:/tools/bin:/tools/sbin
|
---|
| 21 | export LC_ALL PATH PS1</literal>
|
---|
| 22 | EOF</userinput></screen>
|
---|
| 23 |
|
---|
[3c2fa25] | 24 | <para>The <envar>LC_ALL</envar> variable controls the localization of
|
---|
| 25 | certain programs, making their messages follow the conventions of a
|
---|
[351f7ef0] | 26 | specified country.
|
---|
[3c2fa25] | 27 | Setting <envar>LC_ALL</envar> to <quote>POSIX</quote> or <quote>C</quote>
|
---|
| 28 | (the two are equivalent) ensures that everything will work as expected
|
---|
[0636f6c] | 29 | on your temporary system.</para>
|
---|
[bf8c11f] | 30 |
|
---|
[3c2fa25] | 31 | <para>By putting <filename class="directory">/tools/bin</filename> at
|
---|
| 32 | the end of the standard <envar>PATH</envar>, all the programs installed in
|
---|
[5be6331] | 33 | <xref linkend="chapter-temp-system"/> are only picked up by the shell
|
---|
[3c2fa25] | 34 | if they have not yet been built on the target system. This configuration
|
---|
| 35 | forces use of the final system binaries as they are built over the
|
---|
[0636f6c] | 36 | temp-system, minimising the chance of final system programs being built
|
---|
[5be6331] | 37 | against the temp-system.</para>
|
---|
[bf8c11f] | 38 |
|
---|
| 39 | </sect1>
|
---|