Changeset b7cea6e


Ignore:
Timestamp:
01/02/2003 10:01:49 PM (21 years ago)
Author:
Gerard Beekmans <gerard@…>
Branches:
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.0, 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, v4_1, v5_0, v5_1, v5_1_1, 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
Children:
30a2c84
Parents:
f991b54
Message:

reworded some of the text

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

File:
1 edited

Legend:

Unmodified
Added
Removed
  • chapter06/glibc-inst.xml

    rf991b54 rb7cea6e  
    22
    33<sect2>
    4 <title>Installation of Glibc</title>
     4<title>Glibc installation</title>
    55
    66<para>Before starting to install glibc, you must cd into the
     
    1919is putting your system at very high risk.</para>
    2020
    21 <para>We'll start by applying a patch to Glibc that fixes a few
    22 things:</para>
     21<para>We'll start by applying a patch to Glibc that fixes the following:</para>
    2322
    2423<itemizedlist>
     
    6059
    6160<para>Glibc will check for the <filename>/etc/ld.so.conf</filename> file
    62 and abort with an error if the file is missing, so we create it.</para>
     61and abort with an error if the file is missing, so we must create it.</para>
    6362
    6463<para><screen><userinput>touch /etc/ld.so.conf</userinput></screen></para>
    6564
    6665<para>It is recommended by the Glibc installation documentation to build
    67 Glibc outside of the source directory in a dedicated directory. Let's
    68 create such a directory and make it our CWD (Current Working
    69 Directory).</para>
     66Glibc outside of the source directory in a dedicated directory.</para>
    7067
    7168<para><screen><userinput>mkdir ../glibc-build &amp;&amp;
    7269cd ../glibc-build</userinput></screen></para>
    7370
    74 <para>Next, configure Glibc.</para>
     71<para>Next, prepare Glibc to be compiled.</para>
    7572
    7673<para><screen><userinput>../glibc-&glibc-version;/configure --prefix=/usr \
     
    7875&nbsp;&nbsp;&nbsp;&nbsp;--libexecdir=/usr/bin</userinput></screen></para>
    7976
    80 <para>During the configure stage you will see the following warning:</para>
     77<para>During this stage you will see the following warning:</para>
    8178
    8279<blockquote><screen>configure: warning:
     
    128125make install</userinput></screen></para>
    129126
    130 <para>Locales aren't installed by default so we install them now. Locales
    131 are used by Glibc to make your Linux system talk in a different language
    132 such as your native tongue.</para>
     127<para>Locales aren't installed when you ran
     128<userinput>make install</userinput>, so we have to do that ourselves now.
     129Locales are used by Glibc to make your Linux system talk in a different
     130language.</para>
    133131
    134132<para><screen><userinput>make localedata/install-locales</userinput></screen></para>
     
    140138file in the glibc-&glibc-version; tree.</para>
    141139
    142 <para>To finish off the installation we'll reload Bash so it uses the new
    143 libnss files. This will get rid of the <emphasis>I have no name!</emphasis>
    144 message in the command prompt.</para>
     140<para>To finish off the installation we'll reload Bash so it uses the
     141libnss files. This will also get rid of the
     142<emphasis>I have no name!</emphasis> message in the command prompt.</para>
    145143
    146144<para><screen><userinput>exec /static/bin/bash --login</userinput></screen></para>
Note: See TracChangeset for help on using the changeset viewer.