source: chapter06/bash.xml@ 5094150b

6.0
Last change on this file since 5094150b was 3e944d6, checked in by Manuel Canales Esparcia <manuel@…>, 20 years ago

Tags corrections.chapter06/aboutdebug.xml

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

  • Property mode set to 100644
File size: 4.1 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-system-bash" role="wrap">
7<title>Bash-&bash-version;</title>
8<?dbhtml filename="bash.html"?>
9
10<indexterm zone="ch-system-bash"><primary sortas="a-Bash">Bash</primary></indexterm>
11
12<sect2 role="package"><title/>
13<para>The Bash package contains the Bourne-Again SHell.</para>
14
15<segmentedlist>
16<segtitle>&buildtime;</segtitle>
17<segtitle>&diskspace;</segtitle>
18<seglistitem><seg>1.2 SBU</seg><seg>27 MB</seg></seglistitem>
19</segmentedlist>
20
21<segmentedlist>
22<segtitle>Bash installation depends on</segtitle>
23<seglistitem><seg>Binutils, Coreutils, Diffutils, Gawk,
24GCC, Glibc, Grep, Make, Ncurse, and Sed.</seg></seglistitem>
25</segmentedlist>
26</sect2>
27
28<sect2 role="installation">
29<title>Installation of Bash</title>
30
31<para>The following patch is only necessary if Readline was not
32installed as suggested. This patch fixes a problem where Bash
33sometimes limits 33 characters to a line before wrapping to the next
34line. If Readline has been installed per the instructions, this patch
35is not necessary because the patch applied to the Readline package
36already resolves this issue.</para>
37
38<screen><userinput>patch -Np1 -i ../bash-&bash-version;-display_wrap-1.patch</userinput></screen>
39
40<para>Prepare Bash for compilation:</para>
41
42<screen><userinput>./configure --prefix=/usr --bindir=/bin \
43 --without-bash-malloc --with-installed-readline</userinput></screen>
44
45<para>The meaning of the configure option:</para>
46
47<variablelist>
48<varlistentry>
49<term><parameter>--with-installed-readline</parameter></term>
50<listitem><para>This options tells Bash to use the
51<filename class="libraryfile">readline</filename> library that is already installed
52on the system rather than using its own readline version.</para></listitem>
53</varlistentry>
54</variablelist>
55
56<para>Compile the package:</para>
57
58<screen><userinput>make</userinput></screen>
59
60<para>To test the results, issue:
61<userinput>make tests</userinput>.</para>
62
63<para>Install the package:</para>
64
65<screen><userinput>make install</userinput></screen>
66
67<para>Run the newly compiled <command>bash</command> program (replacing the one that is
68currently being executed):</para>
69
70<screen><userinput>exec /bin/bash --login +h</userinput></screen>
71
72<note><para>The parameters used make the <command>bash</command>
73process an interactive login shell and continue to disable hashing so
74that new programs are found as they become available.</para></note>
75
76</sect2>
77
78
79<sect2 id="contents-bash" role="content"><title>Contents of Bash</title>
80
81<segmentedlist>
82<segtitle>Installed programs</segtitle>
83<seglistitem><seg>bash, bashbug, and sh (link to bash)</seg></seglistitem>
84</segmentedlist>
85
86<variablelist><bridgehead renderas="sect3">Short descriptions</bridgehead>
87<?dbfo list-presentation="list"?>
88
89<varlistentry id="bash">
90<term><command>bash</command></term>
91<listitem>
92<para>a widely-used command interpreter. It performs many types of
93expansions and substitutions on a given command line before executing
94it, thus making this interpreter a powerful tool.</para>
95<indexterm zone="ch-system-bash bash"><primary sortas="b-bash">bash</primary></indexterm>
96</listitem>
97</varlistentry>
98
99<varlistentry id="bashbug">
100<term><command>bashbug</command></term>
101<listitem>
102<para>a shell script to help the user compose and mail bug reports
103concerning <command>bash</command> in a standard format.</para>
104<indexterm zone="ch-system-bash bashbug"><primary sortas="b-bashbug">bashbug</primary></indexterm>
105</listitem>
106</varlistentry>
107
108<varlistentry id="sh">
109<term><command>sh</command></term>
110<listitem>
111<para>a symlink to the <command>bash</command> program. When invoked
112as <command>sh</command>, <command>bash</command> tries to mimic the
113startup behavior of historical versions of <command>sh</command> as
114closely as possible, while conforming to the POSIX standard as well.</para>
115<indexterm zone="ch-system-bash sh"><primary sortas="b-sh">sh</primary></indexterm>
116</listitem>
117</varlistentry>
118</variablelist>
119
120</sect2>
121
122</sect1>
123
Note: See TracBrowser for help on using the repository browser.