source: postlfs/shells/zsh.xml@ 9f12e36

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 9f12e36 was 9f12e36, checked in by Randy McMurchy <randy@…>, 18 years ago

Removed 'keywordset' blocks and extra spaces from the XML files (note this was by accident as I meant to do just in the gnome directory but I was in the root of BOOK when I ran the script, but this was going to happen anyway so I don't think it is a big deal)

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

  • Property mode set to 100644
File size: 5.3 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 zsh-download-http "http://prdownloads.sourceforge.net/zsh/zsh-&zsh-version;.tar.bz2">
8 <!ENTITY zsh-download-ftp " ">
9 <!ENTITY zsh-md5sum "e2060f743dcdf3b383e80e862a6548fe">
10 <!ENTITY zsh-size "2.0 MB">
11 <!ENTITY zsh-buildsize "24 MB">
12 <!ENTITY zsh-time "0.5 SBU">
13]>
14
15<sect1 id="zsh" xreflabel="ZSH-&zsh-version;">
16 <?dbhtml filename="zsh.html"?>
17
18 <sect1info>
19 <othername>$LastChangedBy$</othername>
20 <date>$Date$</date>
21 </sect1info>
22
23 <title>ZSH-&zsh-version;</title>
24
25 <indexterm zone="zsh">
26 <primary sortas="a-ZSH">ZSH</primary>
27 </indexterm>
28
29 <sect2 role="package">
30 <title>Introduction to ZSH</title>
31
32 <para>The <application>ZSH</application> package contains a command
33 interpreter (shell) usable as an interactive login shell and as
34 a shell script command processor. Of the standard shells,
35 <application>ZSH</application> most closely resembles
36 <application>KSH</application> but includes many enhancements.</para>
37
38 <bridgehead renderas="sect3">Package Information</bridgehead>
39 <itemizedlist spacing="compact">
40 <listitem>
41 <para>Download (HTTP): <ulink url="&zsh-download-http;"/></para>
42 </listitem>
43 <listitem>
44 <para>Download (FTP): <ulink url="&zsh-download-ftp;"/></para>
45 </listitem>
46 <listitem>
47 <para>Download MD5 sum: &zsh-md5sum;</para>
48 </listitem>
49 <listitem>
50 <para>Download size: &zsh-size;</para>
51 </listitem>
52 <listitem>
53 <para>Estimated disk space required: &zsh-buildsize;</para>
54 </listitem>
55 <listitem>
56 <para>Estimated build time: &zsh-time;</para>
57 </listitem>
58 </itemizedlist>
59
60 <bridgehead renderas="sect3">ZSH Dependencies</bridgehead>
61
62 <bridgehead renderas="sect4">Optional</bridgehead>
63 <para role="optional"><xref linkend="pcre"/></para>
64
65 <para condition="html" role="usernotes">User Notes:
66 <ulink url="&blfs-wiki;/zsh"/></para>
67
68 </sect2>
69
70 <sect2 role="installation">
71 <title>Installation of ZSH</title>
72
73 <para>Install <application>ZSH</application> by running the following
74 commands:</para>
75
76<screen><userinput>./configure --prefix=/usr &amp;&amp;
77make</userinput></screen>
78
79 <para>To test the results, issue: <command>make check</command>.</para>
80
81 <para>Now, as the <systemitem class="username">root</systemitem> user:</para>
82
83<screen role="root"><userinput>make install &amp;&amp;
84make install.info</userinput></screen>
85
86 </sect2>
87
88 <sect2 role="configuration">
89 <title>Configuring ZSH</title>
90
91 <sect3 id="zsh-config">
92 <title>Config Files</title>
93
94 <para>There are a whole host of configuration files for
95 <application>ZSH</application> including <filename>/etc/zshenv</filename>,
96 <filename>/etc/zprofile</filename>, <filename>/etc/zshrc</filename>,
97 <filename>/etc/zlogin</filename>, and <filename>/etc/zlogout</filename>.
98 You can find more information on these in the <filename>zsh(1)</filename>
99 and related man pages.</para>
100
101 <indexterm zone="zsh zsh-config">
102 <primary sortas="e-etc-zshenv">/etc/zshenv</primary>
103 </indexterm>
104
105 <indexterm zone="zsh zsh-config">
106 <primary sortas="e-etc-zprofile">/etc/zprofile</primary>
107 </indexterm>
108
109 <indexterm zone="zsh zsh-config">
110 <primary sortas="e-etc-zshrc">/etc/zshrc</primary>
111 </indexterm>
112
113 <indexterm zone="zsh zsh-config">
114 <primary sortas="e-etc-zlogin">/etc/zlogin</primary>
115 </indexterm>
116
117 <indexterm zone="zsh zsh-config">
118 <primary sortas="e-etc-zlogout">/etc/zlogout</primary>
119 </indexterm>
120
121 </sect3>
122
123 <sect3>
124 <title>Configuration Information</title>
125
126 <para>Update <filename>/etc/shells</filename> to include the
127 <application>ZSH</application> shell program names (as the
128 <systemitem class="username">root</systemitem> user):</para>
129
130<screen role="root"><userinput>cat &gt;&gt; /etc/shells &lt;&lt; "EOF"
131<literal>/usr/bin/zsh
132/usr/bin/zsh-4.2.5</literal>
133EOF</userinput></screen>
134
135 </sect3>
136
137 </sect2>
138
139 <sect2 role="content">
140 <title>Contents</title>
141
142 <segmentedlist>
143 <segtitle>Installed Programs</segtitle>
144 <segtitle>Installed Libraries</segtitle>
145 <segtitle>Installed Directories</segtitle>
146
147 <seglistitem>
148 <seg>zsh and zsh-4.2.5</seg>
149 <seg>None</seg>
150 <seg>/usr/lib/zsh and /usr/share/zsh</seg>
151 </seglistitem>
152 </segmentedlist>
153
154 <variablelist>
155 <bridgehead renderas="sect3">Short Description</bridgehead>
156 <?dbfo list-presentation="list"?>
157 <?dbhtml list-presentation="table"?>
158
159 <varlistentry id="zsh-prog">
160 <term><command>zsh</command></term>
161 <listitem>
162 <para>is a shell which has command-line editing, built-in spelling
163 correction, programmable command completion, shell functions (with
164 autoloading), a history mechanism, and a host of other features.</para>
165 <indexterm zone="zsh zsh-prog">
166 <primary sortas="b-zsh">zsh</primary>
167 </indexterm>
168 </listitem>
169 </varlistentry>
170
171 </variablelist>
172
173 </sect2>
174
175</sect1>
Note: See TracBrowser for help on using the repository browser.