source: chapter06/bash.xml@ 8aaa00a1

6.0
Last change on this file since 8aaa00a1 was 69993f4, checked in by Gerard Beekmans <gerard@…>, 20 years ago

Second round of edits for final release

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

  • Property mode set to 100644
File size: 3.9 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" xreflabel="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 fixes a problem where Bash sometimes will
32only show 33 characters on a line and then wraps to the next
33line.</para>
34
35<screen><userinput>patch -Np1 -i ../bash-&bash-version;-display_wrap-1.patch</userinput></screen>
36
37<para>Prepare Bash for compilation:</para>
38
39<screen><userinput>./configure --prefix=/usr --bindir=/bin \
40 --without-bash-malloc --with-installed-readline</userinput></screen>
41
42<para>The meaning of the configure option:</para>
43
44<variablelist>
45<varlistentry>
46<term><parameter>--with-installed-readline</parameter></term>
47<listitem><para>This options tells Bash to use the
48<filename>readline</filename> library that is already installed on the
49system rather than using its own readline version.</para></listitem>
50</varlistentry>
51</variablelist>
52
53<para>Compile the package:</para>
54
55<screen><userinput>make</userinput></screen>
56
57<para>To test the results, issue:
58<userinput>make tests</userinput>.</para>
59
60<para>Install the package:</para>
61
62<screen><userinput>make install</userinput></screen>
63
64<para>Run the newly compiled <command>bash</command> program (replacing the one that is
65currently being executed):</para>
66
67<screen><userinput>exec /bin/bash --login +h</userinput></screen>
68
69<note><para>The parameters used make the <command>bash</command>
70process an interactive login shell and continue to disable hashing so
71that new programs are found as they become available.</para></note>
72
73</sect2>
74
75
76<sect2 id="contents-bash" role="content"><title>Contents of Bash</title>
77
78<segmentedlist>
79<segtitle>Installed programs</segtitle>
80<seglistitem><seg>bash, bashbug, and sh (link to bash)</seg></seglistitem>
81</segmentedlist>
82
83<variablelist><bridgehead renderas="sect3">Short descriptions</bridgehead>
84<?dbfo list-presentation="list"?>
85
86<varlistentry id="bash">
87<term><command>bash</command></term>
88<listitem>
89<para>a widely-used command interpreter. It performs many types of
90expansions and substitutions on a given command line before executing
91it, thus making this interpreter a powerful tool.</para>
92<indexterm zone="ch-system-bash bash"><primary sortas="b-bash">bash</primary></indexterm>
93</listitem>
94</varlistentry>
95
96<varlistentry id="bashbug">
97<term><command>bashbug</command></term>
98<listitem>
99<para>a shell script to help the user compose and mail bug reports
100concerning <command>bash</command> in a standard format.</para>
101<indexterm zone="ch-system-bash bashbug"><primary sortas="b-bashbug">bashbug</primary></indexterm>
102</listitem>
103</varlistentry>
104
105<varlistentry id="sh">
106<term><command>sh</command></term>
107<listitem>
108<para>a symlink to the bash program. When invoked
109as <command>sh</command>, <command>bash</command> tries to mimic the
110startup behavior of historical versions of <command>sh</command> as
111closely as possible, while conforming to the POSIX standard as well.</para>
112<indexterm zone="ch-system-bash sh"><primary sortas="b-sh">sh</primary></indexterm>
113</listitem>
114</varlistentry>
115</variablelist>
116
117</sect2>
118
119</sect1>
120
Note: See TracBrowser for help on using the repository browser.