finished 1.10
[linux_from_scratch.git] / BOOK / chapter05 / bash-inst.xml
bloba12f82d9dd34452c7d420229981720aa62af13e0
1 <sect2>
2 <title>Installation of Bash</title>
4 <para>Before you attempt to install Bash, you have to check to make sure
5 your distribution has the <filename>/usr/lib/libcurses.a</filename> and
6 <filename>/usr/lib/libncurses.a</filename> files. If your host
7 distribution is an LFS system, all files will be present if you followed
8 the instructions of the book version you read exactly.</para>
10 <para>If both of the files are missing, you have to install the Ncurses
11 development package. This package is often called something like 
12 <emphasis>Ncurses-dev</emphasis>. If this package is already installed,
13 or you just installed it, check for the two files again. Often the 
14 <filename>libcurses.a</filename> file is (still) missing. If so, then 
15 create <filename>libcurses.a</filename> as a symlink by running the 
16 following commands as user root:</para>
18 <para><screen><userinput>ln -s libncurses.a /usr/lib/libcurses.a</userinput></screen></para>
20 <para>Now we can continue. Install Bash by running the following 
21 commands:</para>
23 <para><screen><userinput>./configure --enable-static-link \
24 &nbsp;&nbsp;&nbsp;&nbsp;--prefix=$LFS/static --with-curses &amp;&amp;
25 make &amp;&amp;
26 make install</userinput></screen></para>
28 <para>If the make install phase ends with something along the lines of</para>
30 <blockquote><screen>install-info: unknown option `--dir-file=/mnt/lfs/usr/info/dir' 
31 usage: install-info [--version] [--help] [--debug] [--maxwidth=nnn] 
32         [--section regexp title] [--infodir=xxx] [--align=nnn] 
33         [--calign=nnn] [--quiet] [--menuentry=xxx]
34         [--info-dir=xxx] 
35         [--keep-old] [--description=xxx] [--test]
36         [--remove] [--] filename 
37 make[1]: *** [install] Error 1 
38 make[1]: Leaving directory `/mnt/lfs/usr/src/bash-&bash-version;/doc' 
39 make: [install] Error 2 (ignored)</screen></blockquote>
41 <para>then that means that you are probably using Debian, and that you have an
42 old version of the texinfo package. This error is not severe by any means: the
43 info pages will be installed when we recompile bash dynamically in
44 chapter 6, so you can ignore it.</para>
46 </sect2>