source: postlfs/shells/tcsh.xml@ a8fc86c1

10.0 10.1 11.0 11.1 11.2 11.3 12.0 12.1 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 a8fc86c1 was a8fc86c1, checked in by Randy McMurchy <randy@…>, 14 years ago

Updated the Tcsh download URLs

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

  • Property mode set to 100644
File size: 8.1 KB
Line 
1<?xml version="1.0" encoding="ISO-8859-1"?>
2<!DOCTYPE sect1 PUBLIC "-//OASIS//DTD DocBook XML V4.5//EN"
3 "http://www.oasis-open.org/docbook/xml/4.5/docbookx.dtd" [
4 <!ENTITY % general-entities SYSTEM "../../general.ent">
5 %general-entities;
6
7 <!ENTITY tcsh-download-http "http://www.sfr-fresh.com/unix/misc/tcsh-&tcsh-version;.tar.gz">
8 <!ENTITY tcsh-download-ftp "ftp://ftp.astron.com/pub/tcsh/tcsh-&tcsh-version;.tar.gz">
9 <!ENTITY tcsh-md5sum "c47de903e3d52f6824c8dd0c91eeb477">
10 <!ENTITY tcsh-size "890 KB">
11 <!ENTITY tcsh-buildsize "9.3 MB">
12 <!ENTITY tcsh-time "0.2 SBU">
13]>
14
15<sect1 id="tcsh" xreflabel="Tcsh-&tcsh-version;">
16 <?dbhtml filename="tcsh.html"?>
17
18 <sect1info>
19 <othername>$LastChangedBy$</othername>
20 <date>$Date$</date>
21 </sect1info>
22
23 <title>Tcsh-&tcsh-version;</title>
24
25 <indexterm zone="tcsh">
26 <primary sortas="a-Tcsh">Tcsh</primary>
27 </indexterm>
28
29 <sect2 role="package">
30 <title>Introduction to Tcsh</title>
31
32 <para>The <application>Tcsh</application> package contains <quote>an
33 enhanced but completely compatible version of the Berkeley Unix C shell
34 (<command>csh</command>)</quote>. This is useful as an alternative shell
35 for those who prefer C syntax to that of the <command>bash</command> shell,
36 and also because some programs require the C shell in order to perform
37 installation tasks.</para>
38
39 <!-- <caution>
40 <para><application>Tcsh</application> has problems with command line
41 editing in multibyte locales. The issue is discussed in more detail
42 in the <xref linkend="locale-wrong-multibyte-characters"/> section
43 of the <xref linkend="locale-issues"/> page.</para>
44 </caution> -->
45
46 <bridgehead renderas="sect3">Package Information</bridgehead>
47 <itemizedlist spacing="compact">
48 <listitem>
49 <para>Download (HTTP): <ulink url="&tcsh-download-http;"/></para>
50 </listitem>
51 <listitem>
52 <para>Download (FTP): <ulink url="&tcsh-download-ftp;"/></para>
53 </listitem>
54 <listitem>
55 <para>Download MD5 sum: &tcsh-md5sum;</para>
56 </listitem>
57 <listitem>
58 <para>Download size: &tcsh-size;</para>
59 </listitem>
60 <listitem>
61 <para>Estimated disk space required: &tcsh-buildsize;</para>
62 </listitem>
63 <listitem>
64 <para>Estimated build time: &tcsh-time;</para>
65 </listitem>
66 </itemizedlist>
67
68 <!-- <bridgehead renderas="sect3">Additional Downloads</bridgehead>
69 <itemizedlist spacing='compact'>
70 <listitem>
71 <para>Required patch for use with Coreutils-&lfs-coreutils-version;:
72 <ulink url="&patch-root;/tcsh-&tcsh-version;-colorls_compat-1.patch"/>
73 </para>
74 </listitem>
75 </itemizedlist> -->
76
77 <para condition="html" role="usernotes">User Notes:
78 <ulink url="&blfs-wiki;/tcsh"/></para>
79
80 </sect2>
81
82 <sect2 role="installation">
83 <title>Installation of Tcsh</title>
84
85 <para>Install <application>Tcsh</application> by running the following
86 commands:</para>
87
88<screen><userinput>sed -i -e 's|\$\*|#&amp;|' -e 's|fR/g|&amp;m|' tcsh.man2html &amp;&amp;
89./configure --prefix=/usr --bindir=/bin &amp;&amp;
90make &amp;&amp;
91sh ./tcsh.man2html</userinput></screen>
92
93<!--
94 <para>To test the results, issue: <command>make check</command>. Note
95 that test #68 (<quote>nice</quote> test) is known to fail.</para>
96-->
97
98 <para>The test suite is known to completely fail with GNU M4-&lfs-m4-version; as
99 installed in LFS. There is one failure (#120) when using an older version
100 of <application>M4</application>. To try to run the checks anyway, issue:
101 <command>make check</command>.</para>
102
103 <para>Now, as the <systemitem class="username">root</systemitem> user:</para>
104
105<screen role="root"><userinput>make install install.man &amp;&amp;
106ln -v -sf tcsh /bin/csh &amp;&amp;
107ln -v -sf tcsh.1 /usr/share/man/man1/csh.1 &amp;&amp;
108install -v -m755 -d /usr/share/doc/tcsh-&tcsh-version;/html &amp;&amp;
109install -v -m644 tcsh.html/* /usr/share/doc/tcsh-&tcsh-version;/html &amp;&amp;
110install -v -m644 FAQ /usr/share/doc/tcsh-&tcsh-version;</userinput></screen>
111
112 </sect2>
113
114 <sect2 role="commands">
115 <title>Command Explanations</title>
116
117 <para><command>sed -i -e 's|\$\*|#&amp;|' -e 's|fR/g|&amp;m|' tcsh.man2html</command>:
118 This updates some deprecated Perl code.</para>
119
120 <para><parameter>--bindir=/bin</parameter>: This installs the
121 <command>tcsh</command> program in <filename
122 class='directory'>/bin</filename> instead of <filename
123 class='directory'>/usr/bin</filename>.</para>
124
125 <para><command>sh ./tcsh.man2html</command>: This creates HTML documentation
126 from the formatted man page.</para>
127
128 <para><command>ln -v -sf tcsh /bin/csh</command>: The FHS states that if
129 there is a <application>C</application> shell installed, there should be a
130 symlink from <filename>/bin/csh</filename> to it. This creates that
131 symlink.</para>
132
133 </sect2>
134
135 <sect2 role="configuration">
136 <title>Configuring Tcsh</title>
137
138 <sect3 id="tcsh-config">
139 <title>Config Files</title>
140
141 <para>There are numerous configuration files for the C shell. Examples
142 of these are <filename>/etc/csh.cshrc</filename>,
143 <filename>/etc/csh.login</filename>, <filename>/etc/csh.logout</filename>,
144 <filename>~/.tcshrc</filename>, <filename>~/.cshrc</filename>,
145 <filename>~/.history</filename>, <filename>~/.cshdirs</filename>,
146 <filename>~/.login</filename>, and <filename>~/.logout</filename>. More
147 information on these files can be found in the
148 <filename>tcsh(1)</filename> man page.</para>
149
150 <indexterm zone="tcsh tcsh-config">
151 <primary sortas="e-etc-csh.cshrc">/etc/csh.cshrc</primary>
152 </indexterm>
153
154 <indexterm zone="tcsh tcsh-config">
155 <primary sortas="e-etc-csh.login">/etc/csh.login</primary>
156 </indexterm>
157
158 <indexterm zone="tcsh tcsh-config">
159 <primary sortas="e-etc-csh.logout">/etc/csh.logout</primary>
160 </indexterm>
161
162 <indexterm zone="tcsh tcsh-config">
163 <primary sortas="e-AA.tcshrc">~/.tcshrc</primary>
164 </indexterm>
165
166 <indexterm zone="tcsh tcsh-config">
167 <primary sortas="e-AA.cshrc">~/.cshrc</primary>
168 </indexterm>
169
170 <indexterm zone="tcsh tcsh-config">
171 <primary sortas="e-AA.history">~/.history</primary>
172 </indexterm>
173
174 <indexterm zone="tcsh tcsh-config">
175 <primary sortas="e-AA.cshdirs">~/.cshdirs</primary>
176 </indexterm>
177
178 <indexterm zone="tcsh tcsh-config">
179 <primary sortas="e-AA.login">~/.login</primary>
180 </indexterm>
181
182 <indexterm zone="tcsh tcsh-config">
183 <primary sortas="e-AA.logout">~/.logout</primary>
184 </indexterm>
185
186 </sect3>
187
188 <sect3>
189 <title>Configuration Information</title>
190
191 <para>Update <filename>/etc/shells</filename> to include the C shell
192 program names (as the <systemitem class="username">root</systemitem>
193 user):</para>
194
195<screen role="root"><userinput>cat &gt;&gt; /etc/shells &lt;&lt; "EOF"
196<literal>/bin/tcsh
197/bin/csh</literal>
198EOF</userinput></screen>
199
200 </sect3>
201
202 </sect2>
203
204 <sect2 role="content">
205 <title>Contents</title>
206
207 <segmentedlist>
208 <segtitle>Installed Program</segtitle>
209 <segtitle>Installed Libraries</segtitle>
210 <segtitle>Installed Directory</segtitle>
211
212 <seglistitem>
213 <seg>tcsh</seg>
214 <seg>None</seg>
215 <seg>/usr/share/doc/tcsh-&tcsh-version;</seg>
216 </seglistitem>
217 </segmentedlist>
218
219 <variablelist>
220 <bridgehead renderas="sect3">Short Descriptions</bridgehead>
221 <?dbfo list-presentation="list"?>
222 <?dbhtml list-presentation="table"?>
223
224 <varlistentry id="tcsh-prog">
225 <term><command>tcsh</command></term>
226 <listitem>
227 <para>is an enhanced but completely compatible version of the
228 Berkeley Unix C shell, <command>csh</command>. It is usable as both an
229 interactive shell and a script processor.</para>
230 <indexterm zone="tcsh tcsh-prog">
231 <primary sortas="b-tcsh">tcsh</primary>
232 </indexterm>
233 </listitem>
234 </varlistentry>
235 </variablelist>
236
237 </sect2>
238
239</sect1>
Note: See TracBrowser for help on using the repository browser.