bash.xml 4.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128
  1. <?xml version="1.0" encoding="ISO-8859-1"?>
  2. <!DOCTYPE sect1 PUBLIC "-//OASIS//DTD DocBook XML V4.4//EN" "http://www.oasis-open.org/docbook/xml/4.4/docbookx.dtd" [
  3. <!ENTITY % general-entities SYSTEM "../general.ent">
  4. <!ENTITY % patches-entities SYSTEM "../patches.ent">
  5. %general-entities;
  6. %patches-entities;
  7. ]>
  8. <sect1 id="ch-system-bash" role="wrap">
  9. <title>Bash-&bash-version;</title>
  10. <?dbhtml filename="bash.html"?>
  11. <indexterm zone="ch-system-bash"><primary sortas="a-Bash">Bash</primary></indexterm>
  12. <sect2 role="package"><title/>
  13. <para>The Bash package contains the Bourne-Again SHell.</para>
  14. <segmentedlist>
  15. <segtitle>&buildtime;</segtitle>
  16. <segtitle>&diskspace;</segtitle>
  17. <seglistitem><seg>1.2 SBU</seg><seg>20.6 MB</seg></seglistitem>
  18. </segmentedlist>
  19. <segmentedlist>
  20. <segtitle>&dependencies;</segtitle>
  21. <seglistitem><seg>Binutils, Coreutils, Diffutils, Gawk,
  22. GCC, Glibc, Grep, Make, Ncurses, and Sed.</seg></seglistitem>
  23. </segmentedlist>
  24. </sect2>
  25. <sect2 role="installation">
  26. <title>Installation of Bash</title>
  27. <!-- Edit Me -->
  28. <para>The following patch fixes various issues, including a problem where Bash
  29. will sometimes only show 33 characters on a line, then wrap to the next:</para>
  30. <screen><userinput>patch -Np1 -i ../&bash-fixes-patch;</userinput></screen>
  31. <para>Bash also has issues when compiled against newer versions of Glibc. The
  32. following patch resolves this problem:</para>
  33. <screen><userinput>patch -Np1 -i ../&bash-avoid_WCONTINUED-patch;</userinput></screen>
  34. <para>Prepare Bash for compilation:</para>
  35. <screen><userinput>./configure --prefix=/usr --bindir=/bin \
  36. --without-bash-malloc --with-installed-readline</userinput></screen>
  37. <para>The meaning of the configure options:</para>
  38. <variablelist>
  39. <varlistentry>
  40. <term><parameter>--with-installed-readline</parameter></term>
  41. <listitem><para>This options tells Bash to use the
  42. <filename class="libraryfile">readline</filename> library that is already installed
  43. on the system rather than using its own readline version.</para></listitem>
  44. </varlistentry>
  45. </variablelist>
  46. <para>Compile the package:</para>
  47. <screen><userinput>make</userinput></screen>
  48. <para>To test the results, issue:
  49. <userinput>make tests</userinput>.</para>
  50. <para>Install the package:</para>
  51. <screen><userinput>make install</userinput></screen>
  52. <para>Run the newly compiled <command>bash</command> program (replacing the one that is
  53. currently being executed):</para>
  54. <screen><userinput>exec /bin/bash --login +h</userinput></screen>
  55. <note><para>The parameters used make the <command>bash</command>
  56. process an interactive login shell and continue to disable hashing so
  57. that new programs are found as they become available.</para></note>
  58. </sect2>
  59. <sect2 id="contents-bash" role="content"><title>Contents of Bash</title>
  60. <segmentedlist>
  61. <segtitle>Installed programs</segtitle>
  62. <seglistitem><seg>bash, bashbug, and sh (link to bash)</seg></seglistitem>
  63. </segmentedlist>
  64. <variablelist><bridgehead renderas="sect3">Short Descriptions</bridgehead>
  65. <?dbfo list-presentation="list"?>
  66. <?dbhtml list-presentation="table"?>
  67. <varlistentry id="bash">
  68. <term><command>bash</command></term>
  69. <listitem>
  70. <para>A widely-used command interpreter; it performs many types of
  71. expansions and substitutions on a given command line before executing
  72. it, thus making this interpreter a powerful tool</para>
  73. <indexterm zone="ch-system-bash bash"><primary sortas="b-bash">bash</primary></indexterm>
  74. </listitem>
  75. </varlistentry>
  76. <varlistentry id="bashbug">
  77. <term><command>bashbug</command></term>
  78. <listitem>
  79. <para>A shell script to help the user compose and mail standard formatted bug
  80. reports concerning <command>bash</command></para>
  81. <indexterm zone="ch-system-bash bashbug"><primary sortas="b-bashbug">bashbug</primary></indexterm>
  82. </listitem>
  83. </varlistentry>
  84. <varlistentry id="sh">
  85. <term><command>sh</command></term>
  86. <listitem>
  87. <para>A symlink to the <command>bash</command> program; when invoked
  88. as <command>sh</command>, <command>bash</command> tries to mimic the
  89. startup behavior of historical versions of <command>sh</command> as
  90. closely as possible, while conforming to the POSIX standard as well</para>
  91. <indexterm zone="ch-system-bash sh"><primary sortas="b-sh">sh</primary></indexterm>
  92. </listitem>
  93. </varlistentry>
  94. </variablelist>
  95. </sect2>
  96. </sect1>