source: postlfs/shells/ash.xml@ 3597eb6

10.0 10.1 11.0 11.1 11.2 11.3 12.0 12.1 6.2 6.2.0 6.2.0-rc1 6.2.0-rc2 6.3 6.3-rc1 6.3-rc2 6.3-rc3 7.10 7.4 7.5 7.6 7.6-blfs 7.6-systemd 7.7 7.8 7.9 8.0 8.1 8.2 8.3 8.4 9.0 9.1 basic bdubbs/svn elogind gnome kde5-13430 kde5-14269 kde5-14686 kea ken/TL2024 ken/inkscape-core-mods ken/tuningfonts krejzi/svn lazarus lxqt nosym perl-modules plabs/newcss plabs/python-mods python3.11 qt5new rahul/power-profiles-daemon renodr/vulkan-addition systemd-11177 systemd-13485 trunk upgradedb xry111/intltool xry111/llvm18 xry111/soup3 xry111/test-20220226 xry111/xf86-video-removal
Last change on this file since 3597eb6 was 3597eb6, checked in by Randy McMurchy <randy@…>, 18 years ago

Added the 'User Notes' wiki link to each package page; changed all instances of .[so,a] to .{so,a} (brackets changed to braces); changed all replaceable tags to use angle brackets instead of square brackets to encapsulate the text - commit #7

git-svn-id: svn://svn.linuxfromscratch.org/BLFS/trunk/BOOK@5835 af4574ff-66df-0310-9fd7-8a98e5e911e0

  • Property mode set to 100644
File size: 4.8 KB
Line 
1<?xml version="1.0" encoding="ISO-8859-1"?>
2<!DOCTYPE sect1 PUBLIC "-//OASIS//DTD DocBook XML V4.4//EN"
3 "http://www.oasis-open.org/docbook/xml/4.4/docbookx.dtd" [
4 <!ENTITY % general-entities SYSTEM "../../general.ent">
5 %general-entities;
6
7 <!ENTITY ash-download-http " ">
8 <!ENTITY ash-download-ftp "ftp://distro.ibiblio.org/pub/linux/distributions/slackware/slackware_source/ap/ash/ash-&ash-version;.tar.gz">
9 <!ENTITY ash-md5sum "1c59f5b62a081cb0cb3b053c01d79529">
10 <!ENTITY ash-size "118 KB">
11 <!ENTITY ash-buildsize "2.2 MB">
12 <!ENTITY ash-time "less than 0.1 SBU">
13]>
14
15<sect1 id="ash" xreflabel="ASH-&ash-version;">
16 <?dbhtml filename="ash.html"?>
17
18 <sect1info>
19 <othername>$LastChangedBy$</othername>
20 <date>$Date$</date>
21 <keywordset>
22 <keyword role="package">ash-&ash-version;.tar</keyword>
23 <keyword role="ftpdir">ash</keyword>
24 </keywordset>
25 </sect1info>
26
27 <title>ASH-&ash-version;</title>
28
29 <indexterm zone="ash">
30 <primary sortas="a-ASH">ASH</primary>
31 </indexterm>
32
33 <sect2 role="package">
34 <title>Introduction to ASH</title>
35
36 <para><command>ash</command> is a shell that is the most compliant with
37 the Bourne Shell (not to be confused with Bourne Again SHell i.e.,
38 <application>Bash</application> installed in LFS) without any additional
39 features. Bourne Shell is available on most commercial UNIX systems.
40 Hence <command>ash</command> is useful for testing scripts to be
41 <command>sh</command>-compliant. It also has small memory and space
42 requirements compared to the other <command>sh</command>-compliant
43 shells.</para>
44
45 <bridgehead renderas="sect3">Package Information</bridgehead>
46 <itemizedlist spacing="compact">
47 <listitem>
48 <para>Download (HTTP): <ulink url="&ash-download-http;"/></para>
49 </listitem>
50 <listitem>
51 <para>Download (FTP): <ulink url="&ash-download-ftp;"/></para>
52 </listitem>
53 <listitem>
54 <para>Download MD5 sum: &ash-md5sum;</para>
55 </listitem>
56 <listitem>
57 <para>Download size: &ash-size;</para>
58 </listitem>
59 <listitem>
60 <para>Estimated disk space required: &ash-buildsize;</para>
61 </listitem>
62 <listitem>
63 <para>Estimated build time: &ash-time;</para>
64 </listitem>
65 </itemizedlist>
66
67 <bridgehead renderas="sect3">Additional Downloads</bridgehead>
68 <itemizedlist spacing='compact'>
69 <listitem>
70 <para>Required Patch: <ulink
71 url="&patch-root;/ash-&ash-version;-cumulative_fixes-2.patch"/></para>
72 </listitem>
73 </itemizedlist>
74
75 <para condition="html" role="usernotes">User Notes:
76 <ulink url="&blfs-wiki;/ash"/></para>
77
78 </sect2>
79
80 <sect2 role="installation">
81 <title>Installation of ASH</title>
82
83 <para>Install <application>ASH</application> by running the following
84 commands:</para>
85
86<screen><userinput>patch -Np1 -i ../ash-0.4.0-cumulative_fixes-2.patch &amp;&amp;
87make</userinput></screen>
88
89 <para>Now, as the <systemitem class="username">root</systemitem> user:</para>
90
91<screen role="root"><userinput>install -v -m 755 sh /bin/ash &amp;&amp;
92install -v -m 644 sh.1 /usr/share/man/man1/ash.1</userinput></screen>
93
94 <para>If you would like to make <command>ash</command> the default
95 <command>sh</command> shell, make a symlink.</para>
96
97<screen role="root"><userinput>ln -v -sf ash /bin/sh</userinput></screen>
98
99 </sect2>
100
101 <sect2 role="configuration">
102 <title>Configuring ASH</title>
103
104 <sect3 id="ash-config">
105 <title>Config Files</title>
106
107 <para><application>ASH</application> sources
108 <filename>/etc/profile</filename> and
109 <filename>$HOME/.profile</filename></para>
110
111 <indexterm zone="ash ash-config">
112 <primary sortas="e-etc-profile">/etc/profile</primary>
113 </indexterm>
114
115 <indexterm zone="ash ash-config">
116 <primary sortas="e-AHOME-.profile">$HOME/.profile</primary>
117 </indexterm>
118
119 </sect3>
120
121 </sect2>
122
123 <sect2 role="content">
124 <title>Contents</title>
125
126 <segmentedlist>
127 <segtitle>Installed Program</segtitle>
128 <segtitle>Installed Libraries</segtitle>
129 <segtitle>Installed Directories</segtitle>
130
131 <seglistitem>
132 <seg>ash</seg>
133 <seg>None</seg>
134 <seg>None</seg>
135 </seglistitem>
136 </segmentedlist>
137
138 <variablelist>
139 <bridgehead renderas="sect3">Short Description</bridgehead>
140 <?dbfo list-presentation="list"?>
141 <?dbhtml list-presentation="table"?>
142
143 <varlistentry id="ash-prog">
144 <term><command>ash</command></term>
145 <listitem>
146 <para>is a <command>sh</command>-compliant shell.</para>
147 <indexterm zone="ash ash-prog">
148 <primary sortas="b-ash">ash</primary>
149 </indexterm>
150 </listitem>
151 </varlistentry>
152
153 </variablelist>
154
155 </sect2>
156
157</sect1>
Note: See TracBrowser for help on using the repository browser.