source: postlfs/shells/ash.xml@ 44f085a

10.0 10.1 11.0 11.1 11.2 11.3 12.0 12.1 6.0 6.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 44f085a was 44f085a, checked in by Bruce Dubbs <bdubbs@…>, 20 years ago

New XML Chapter 7 - Part II done

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

  • Property mode set to 100644
File size: 3.1 KB
Line 
1<?xml version="1.0" encoding="ISO-8859-1"?>
2<!DOCTYPE sect1 PUBLIC "-//OASIS//DTD DocBook XML V4.3//EN"
3 "http://www.oasis-open.org/docbook/xml/4.3/docbookx.dtd" [
4 <!ENTITY % general-entities SYSTEM "../../general.ent">
5 %general-entities;
6
7<!ENTITY ash-version "0.4.0">
8<!ENTITY ash-download-http " ">
9<!ENTITY ash-download-ftp "ftp://distro.ibiblio.org/pub/Linux/distributions/slackware/slackware_source/ap/ash/ash-&ash-version;.tar.gz">
10<!ENTITY ash-size "118 KB">
11<!ENTITY ash-buildsize "2.7 MB">
12<!ENTITY ash-time "0.06 SBU">
13
14]>
15
16<sect1 id="ash" xreflabel="ASH-&ash-version;">
17<?dbhtml filename="ash.html"?>
18<title>ASH-&ash-version;</title>
19
20<sect2>
21<title>Introduction to <application>ASH</application></title>
22
23<para><command>ash</command> is a shell that is the most compliant with the
24Bourne Shell (not to be confused with Bourne Again SHell i.e., <application>Bash</application>
25installed in <acronym>LFS</acronym>) without any additional features.
26Bourne Shell is available on most commercial
27<acronym>UNIX</acronym> systems. Hence <command>ash</command> is useful for testing
28scripts to be <command>sh</command>-compliant. It also has a small memory and space requirements
29compared to the other <command>sh</command>-compliant shells.</para>
30
31<sect3><title>Package information</title>
32<itemizedlist spacing='compact'>
33<listitem><para>Download (HTTP): <ulink
34url="&ash-download-http;"/></para></listitem>
35<listitem><para>Download (FTP): <ulink
36url="&ash-download-ftp;"/></para></listitem>
37<listitem><para>Download size: &ash-size;</para></listitem>
38<listitem><para>Estimated Disk space required:
39&ash-buildsize;</para></listitem>
40<listitem><para>Estimated build time:
41&ash-time;</para></listitem></itemizedlist>
42</sect3>
43
44<sect3><title>Additional downloads</title>
45<itemizedlist spacing='compact'>
46<listitem><para>Required patch:
47<ulink url="&patch-root;/ash-&ash-version;-cumulative_fixes-1.patch"/></para></listitem>
48</itemizedlist>
49</sect3>
50
51</sect2>
52
53<sect2>
54<title>Installation of <application>ASH</application></title>
55
56<para>Install <application>ASH</application> by running the following commands:</para>
57
58<screen><userinput><command>patch -Np1 -i ../ash-0.4.0-cumulative_fixes-1.patch &amp;&amp;
59make &amp;&amp;
60install -m 755 sh /bin/ash &amp;&amp;
61install -m 644 sh.1 /usr/share/man/man1/ash.1</command></userinput></screen>
62
63<para>If you would like to make <command>ash</command> the default sh shell, make a symlink.</para>
64
65<screen><userinput><command>ln -sf ash /bin/sh</command></userinput></screen>
66
67</sect2>
68
69<sect2>
70<title>Configuring <application>ASH</application></title>
71
72<sect3><title>Config files</title>
73<para><application>ASH</application> sources <filename>/etc/profile</filename>
74and <filename>$HOME/.profile</filename></para>
75</sect3>
76
77</sect2>
78
79<sect2>
80<title>Contents</title>
81
82<para>The <application>ASH</application> package contains <command>ash</command>,
83a <command>sh</command> compliant shell.</para>
84
85</sect2>
86
87<sect2><title>Description</title>
88
89<sect3><title>ash</title>
90<para><command>ash</command> is a <command>sh</command>-compliant shell.</para>
91</sect3>
92
93</sect2>
94
95</sect1>
96
Note: See TracBrowser for help on using the repository browser.