source: x/installing/xterm.xml@ 3534db5d

10.0 10.1 11.0 11.1 11.2 11.3 12.0 12.1 7.10 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 gimp3 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/for-12.3 xry111/intltool xry111/llvm18 xry111/soup3 xry111/spidermonkey128 xry111/test-20220226 xry111/xf86-video-removal
Last change on this file since 3534db5d was 0a21ca1e, checked in by Igor Živković <igor@…>, 11 years ago

update to xterm-297

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

  • Property mode set to 100644
File size: 6.6 KB
RevLine 
[868c7c2]1<?xml version="1.0" encoding="ISO-8859-1"?>
[6732c094]2<!DOCTYPE sect1 PUBLIC "-//OASIS//DTD DocBook XML V4.5//EN"
3 "http://www.oasis-open.org/docbook/xml/4.5/docbookx.dtd" [
[868c7c2]4 <!ENTITY % general-entities SYSTEM "../../general.ent">
5 %general-entities;
6
7 <!ENTITY xterm-download-http " ">
[e2b0dfc0]8 <!ENTITY xterm-download-ftp "ftp://invisible-island.net/xterm/xterm-&xterm-version;.tgz">
[0a21ca1e]9 <!ENTITY xterm-md5sum "45610ae6fe90cf086fcd75b9cb97bbaf">
[1c22b4e]10 <!ENTITY xterm-size "1.1 MB">
[0a21ca1e]11 <!ENTITY xterm-buildsize "14 MB">
[ab79e8a]12 <!ENTITY xterm-time "0.2 SBU">
[868c7c2]13]>
14
15<sect1 id="xterm2" xreflabel="xterm-&xterm-version;">
16 <?dbhtml filename="xterm.html"?>
17
18 <sect1info>
19 <othername>$LastChangedBy$</othername>
20 <date>$Date$</date>
21 </sect1info>
22
23 <title>xterm-&xterm-version;</title>
24
25 <indexterm zone="xterm2">
26 <primary sortas="a-xterm2">xterm</primary>
27 </indexterm>
28
29 <sect2 role="package">
30 <title>Introduction to xterm</title>
31
[e2b0dfc0]32 <para><application>xterm</application> is a terminal emulator for
33 the X Window System.</para>
[868c7c2]34
[e03aea8]35 &not-katamari;
36
[5f26d66f]37 &lfs74_checked;
[1ed7820]38
[868c7c2]39 <bridgehead renderas="sect3">Package Information</bridgehead>
40 <itemizedlist spacing="compact">
41 <listitem>
42 <para>Download (HTTP): <ulink url="&xterm-download-http;"/></para>
43 </listitem>
44 <listitem>
45 <para>Download (FTP): <ulink url="&xterm-download-ftp;"/></para>
46 </listitem>
47 <listitem>
48 <para>Download MD5 sum: &xterm-md5sum;</para>
49 </listitem>
50 <listitem>
51 <para>Download size: &xterm-size;</para>
52 </listitem>
53 <listitem>
54 <para>Estimated disk space required: &xterm-buildsize;</para>
55 </listitem>
56 <listitem>
57 <para>Estimated build time: &xterm-time;</para>
58 </listitem>
59 </itemizedlist>
60
61 <bridgehead renderas="sect3">xterm Dependencies</bridgehead>
62
63 <bridgehead renderas="sect4">Required</bridgehead>
[1a1fc45]64 <para role="required"><xref linkend="xorg7-app"/></para>
[868c7c2]65
[1663c2b5]66 <para condition="html" role="usernotes">User Notes:
67 <ulink url='&blfs-wiki;/Xterm'/></para>
[6e43b142]68
[868c7c2]69 </sect2>
70
71 <sect2 role="installation">
72 <title>Installation of xterm</title>
73
74 <para>Install <application>xterm</application> by running the
75 following commands:</para>
76
[9f0cf8f]77<screen><userinput>sed -i '/v0/,+1s/new:/new:kb=^?:/' termcap &amp;&amp;
78echo -e '\tkbs=\\177,' &gt;&gt;terminfo &amp;&amp;
[5f26d66f]79
80TERMINFO=/usr/share/terminfo \
81./configure $XORG_CONFIG \
[bbe9eba0]82 --with-app-defaults=/etc/X11/app-defaults &amp;&amp;
[5f26d66f]83
[868c7c2]84make</userinput></screen>
85
86 <para>This package does not come with a test suite.</para>
87
[c23b62b]88 <para>Now, as the <systemitem class="username">root</systemitem>
[6291d0e]89 user:</para>
[868c7c2]90
[371ff30]91<screen role="root"><userinput>make install &amp;&amp;
92make install-ti</userinput></screen>
[868c7c2]93
94 </sect2>
95
[e4a21ed]96 <sect2 role="commands">
97 <title>Command Explanations</title>
[fd7e0ed6]98
[9f0cf8f]99 <para><command>sed -i ... termcap</command>,
[33cf52e]100 <command>echo ... >>terminfo</command>: These commands modify the terminal
[9f0cf8f]101 description, so that the Backspace key is expected to send the character
102 with ASCII code 127, for consistency with the Linux console.</para>
[e4a21ed]103
[33cf52e]104 <para><parameter>TERMINFO=/usr/share/terminfo</parameter>: This ensures
105 that the <command>xterm</command> terminfo files are installed to the
[39fce78]106 system terminfo database when the installation prefix is not
107 <filename class="directory">/usr</filename>.</para>
108
[1c22b4e]109 <para><parameter>--with-app-defaults=...</parameter>: Sets the location
110 for the <filename class="directory">app-defaults</filename>
111 directory.</para>
112
[371ff30]113 <para><command>make install-ti</command>: This command installs corrected
[6473e74]114 terminfo description files for use with
[371ff30]115 <application>xterm</application>.</para>
116
[e4a21ed]117 </sect2>
118
[6e43b142]119 <sect2 role="configuration">
120 <title>Configuring xterm</title>
121
122 <para>There are two ways to configure xterm. You can add X resource
123 definitions to the user's <filename>~/.Xresources</filename> file, or
124 add them to the system-wide
[2932ef8]125 <filename>$XORG_PREFIX/share/X11/app-defaults/Xterm</filename> file.</para>
[6e43b142]126
[9f0cf8f]127 <para>In order for xterm to follow the locale settings in the environment,
128 use TrueType fonts, and follow the Linux convention about the code sent by
129 the Backspace key, add the following definitions as the
[6e43b142]130 <systemitem class="username">root</systemitem> user:</para>
131
[88ccfed]132<screen role="root"><userinput>cat &gt;&gt; /etc/X11/app-defaults/XTerm &lt;&lt; "EOF"
[bb535fde]133<literal>*VT100*locale: true
[6e43b142]134*VT100*faceName: Monospace
[b79c3d81]135*VT100*faceSize: 10
[9f0cf8f]136*backarrowKeyIsErase: true
[bb535fde]137*ptyInitialErase: true</literal>
[6e43b142]138EOF</userinput></screen>
139
140 </sect2>
141
[868c7c2]142 <sect2 role="content">
143 <title>Contents</title>
144
145 <segmentedlist>
146 <segtitle>Installed Programs</segtitle>
[eb50ddde]147 <segtitle>Installed Libraries</segtitle>
148 <segtitle>Installed Directories</segtitle>
[868c7c2]149
150 <seglistitem>
[33cf52e]151 <seg>koi8rxterm, resize, uxterm, and xterm</seg>
[eb50ddde]152 <seg>None</seg>
153 <seg>None</seg>
[868c7c2]154 </seglistitem>
155 </segmentedlist>
156
[e4a21ed]157 <variablelist>
158 <bridgehead renderas="sect3">Short Descriptions</bridgehead>
159 <?dbfo list-presentation="list"?>
160 <?dbhtml list-presentation="table"?>
161
[33cf52e]162 <varlistentry id="koi8rxterm">
[eb50ddde]163 <term><command>koi8rxterm</command></term>
[33cf52e]164 <listitem>
165 <para>is a wrapper script to set up xterm with a KOI8-R locale.</para>
166 <indexterm zone="xterm2 koi8rxterm">
167 <primary sortas="b-koi8rxterm">koi8rxterm</primary>
168 </indexterm>
169 </listitem>
[0d7900a]170 </varlistentry>
171
172
[33cf52e]173
[e4a21ed]174 <varlistentry id="resize">
[eb50ddde]175 <term><command>resize</command></term>
[e4a21ed]176 <listitem>
[6473e74]177 <para>prints a shell command for setting the TERM and TERMCAP
178 environment variables to indicate the current size of xterm
[e4a21ed]179 window.</para>
180 <indexterm zone="xterm2 resize">
181 <primary sortas="b-resize">resize</primary>
182 </indexterm>
183 </listitem>
184 </varlistentry>
185
186 <varlistentry id="uxterm">
[eb50ddde]187 <term><command>uxterm</command></term>
[e4a21ed]188 <listitem>
[9f0cf8f]189 <para>is a wrapper script that modifies the current locale to use UTF-8
190 and starts xterm with the proper settings.</para>
[e4a21ed]191 <indexterm zone="xterm2 uxterm">
192 <primary sortas="b-uxterm">uxterm</primary>
193 </indexterm>
194 </listitem>
195 </varlistentry>
196
197 <varlistentry id="xterm-bin">
[eb50ddde]198 <term><command>xterm</command></term>
[e4a21ed]199 <listitem>
200 <para>is a terminal emulator for the X Window System.</para>
201 <indexterm zone="xterm2 xterm2">
202 <primary sortas="b-xterm2">xterm</primary>
203 </indexterm>
204 </listitem>
205 </varlistentry>
206
207 </variablelist>
208
[868c7c2]209 </sect2>
210
211</sect1>
Note: See TracBrowser for help on using the repository browser.