source: general/genutils/screen.xml@ 2cc10fd8

10.0 10.1 11.0 11.1 11.2 11.3 12.0 12.1 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 2cc10fd8 was 2cc10fd8, checked in by Bruce Dubbs <bdubbs@…>, 19 years ago

Typo in screen

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

  • Property mode set to 100644
File size: 5.4 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 screen-download-http "http://ftp.gnu.org/pub/gnu/screen/screen-&screen-version;.tar.gz">
8 <!ENTITY screen-download-ftp "ftp://ftp.gnu.org/pub/gnu/screen/screen-&screen-version;.tar.gz">
9 <!ENTITY screen-md5sum "ed68ea9b43d9fba0972cb017a24940a1">
10 <!ENTITY screen-size "825 KB">
11 <!ENTITY screen-buildsize "5.8 MB">
12 <!ENTITY screen-time "0.2 SBU">
13]>
14
15<sect1 id="screen" xreflabel="Screen-&screen-version;">
16 <?dbhtml filename="screen.html"?>
17
18 <sect1info>
19 <othername>$LastChangedBy$</othername>
20 <date>$Date$</date>
21 </sect1info>
22
23 <title>Screen-&screen-version;</title>
24
25 <indexterm zone="screen">
26 <primary sortas="a-Screen">Screen</primary>
27 </indexterm>
28
29 <sect2 role="package">
30 <title>Introduction to Screen</title>
31
32 <para><application>Screen</application> is a terminal multiplexor that
33 runs several separate processes, typically interactive shells, on a single
34 physical character-based terminal. Each virtual terminal emulates a DEC
35 VT100 plus several ANSI X3.64 and ISO 2022 functions and also supports
36 configurable input and output translation, serial port support, configurable
37 logging, multi-user support, and UTF-8 character encoding support (currently
38 not supported by LFS). Screen sessions can be detached and resumed
39 later on a different terminal.</para>
40
41 <bridgehead renderas="sect3">Package Information</bridgehead>
42 <itemizedlist spacing="compact">
43 <listitem>
44 <para>Download (HTTP): <ulink url="&screen-download-http;"/></para>
45 </listitem>
46 <listitem>
47 <para>Download (FTP): <ulink url="&screen-download-ftp;"/></para>
48 </listitem>
49 <listitem>
50 <para>Download MD5 sum: &screen-md5sum;</para>
51 </listitem>
52 <listitem>
53 <para>Download size: &screen-size;</para>
54 </listitem>
55 <listitem>
56 <para>Estimated disk space required: &screen-buildsize;</para>
57 </listitem>
58 <listitem>
59 <para>Estimated build time: &screen-time;</para>
60 </listitem>
61 </itemizedlist>
62
63 <bridgehead renderas="sect3">Screen Dependencies</bridgehead>
64
65 <bridgehead renderas="sect4">Optional</bridgehead>
66 <para><xref linkend="Linux_PAM"/></para>
67
68 </sect2>
69
70 <sect2 role="installation">
71 <title>Installation of Screen</title>
72
73 <para>Install <application>Screen</application> by running the
74 following commands:</para>
75
76<screen><userinput>./configure --prefix=/usr --with-socket-dir=/var/run/screen \
77 --with-sys-screenrc=/etc/screenrc &amp;&amp;
78sed -i -e "s%/usr/local/etc/screenrc%/etc/screenrc%" {etc,doc}/* &amp;&amp;
79make</userinput></screen>
80
81 <para>This package does not come with a test suite.</para>
82
83 <para>Now, as the <systemitem class="username">root</systemitem> user:</para>
84
85<screen role="root"><userinput>make install &amp;&amp;
86install -m 644 etc/etcscreenrc /etc/screenrc</userinput></screen>
87
88 </sect2>
89
90 <sect2 role="commands">
91 <title>Command Explanations</title>
92
93 <para><parameter>--with-socket-dir=/var/run/screen</parameter>: This option
94 places the per-user sockets in a standard location.</para>
95
96 <para><parameter>--with-sys-screenrc=/etc/screenrc</parameter>: This option
97 places the global screenrc file in <filename
98 class='directory'>/etc</filename>. </para>
99
100 <para><command>sed -i -e "s%/usr/local/etc/screenrc%/etc/screenrc%"
101 {etc,doc}/*</command>: This command corrects the configuration and
102 documention files to the location that is used here for the global
103 screenrc file.</para>
104
105 </sect2>
106
107 <sect2 role="configuration">
108 <title>Configuring Screen</title>
109
110 <sect3 id ="screen-config">
111 <title>Config Files</title>
112
113 <para><filename>/etc/screenrc</filename> and
114 <filename>~/.screenrc</filename></para>
115
116 <indexterm zone="screen screen-config">
117 <primary sortas="e-AA.screenrc">~/.screenrc</primary>
118 </indexterm>
119
120 <indexterm zone="screen screen-config">
121 <primary sortas="e-etc-screenrc">/etc/screenrc</primary>
122 </indexterm>
123
124 </sect3>
125
126 <sect3>
127 <title>Configuration Information</title>
128
129 <para>You may want to look at the example configuration file that was
130 installed and customize it for your needs.</para>
131
132 </sect3>
133
134 </sect2>
135
136 <sect2 role="content">
137 <title>Contents</title>
138
139 <segmentedlist>
140 <segtitle>Installed Program</segtitle>
141 <segtitle>Installed Libraries</segtitle>
142 <segtitle>Installed Directory</segtitle>
143
144 <seglistitem>
145 <seg>screen</seg>
146 <seg>None</seg>
147 <seg>/var/run/screen</seg>
148 </seglistitem>
149 </segmentedlist>
150
151 <variablelist>
152 <bridgehead renderas="sect3">Short Descriptions</bridgehead>
153 <?dbfo list-presentation="list"?>
154 <?dbhtml list-presentation="table"?>
155
156 <varlistentry id="screen-prog">
157 <term><command>screen</command></term>
158 <listitem>
159 <para>is a terminal multiplexor with VT100/ANSI
160 terminal emulation.</para>
161 <indexterm zone="screen screen-prog">
162 <primary sortas="b-screen">screen</primary>
163 </indexterm>
164 </listitem>
165 </varlistentry>
166
167 </variablelist>
168
169 </sect2>
170
171</sect1>
Note: See TracBrowser for help on using the repository browser.