source: general/genutils/screen.xml@ 32bbead

11.3 12.0 12.1 kea ken/TL2024 ken/inkscape-core-mods ken/tuningfonts lazarus lxqt plabs/newcss python3.11 qt5new rahul/power-profiles-daemon renodr/vulkan-addition trunk xry111/llvm18 xry111/xf86-video-removal
Last change on this file since 32bbead was d0c42be, checked in by Douglas R. Reno <renodr@…>, 17 months ago

Initial tags for 11.3

  • Property mode set to 100644
File size: 6.6 KB
RevLine 
[b0d6e4b]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" [
[b0d6e4b]4 <!ENTITY % general-entities SYSTEM "../../general.ent">
5 %general-entities;
6
[8dfc5c3]7 <!ENTITY screen-download-http "&gnu-http;/screen/screen-&screen-version;.tar.gz">
8 <!ENTITY screen-download-ftp "&gnu-ftp;/screen/screen-&screen-version;.tar.gz">
[42fc81b]9 <!ENTITY screen-md5sum "b1ef8ed89134d335e614016634982b6d">
10 <!ENTITY screen-size "780 KB">
11 <!ENTITY screen-buildsize "7.8 MB">
[8dfc5c3]12 <!ENTITY screen-time "0.1 SBU">
[b0d6e4b]13]>
14
15<sect1 id="screen" xreflabel="Screen-&screen-version;">
[5b6516d]16 <?dbhtml filename="screen.html"?>
[fc7afd0c]17
18
[5b6516d]19 <title>Screen-&screen-version;</title>
[fc7afd0c]20
[5b6516d]21 <indexterm zone="screen">
22 <primary sortas="a-Screen">Screen</primary>
23 </indexterm>
24
25 <sect2 role="package">
26 <title>Introduction to Screen</title>
[fc7afd0c]27
[b7a85cd9]28 <para>
29 <application>Screen</application> is a terminal multiplexor that runs
30 several separate processes, typically interactive shells, on a single
31 physical character-based terminal. Each virtual terminal emulates a DEC
32 VT100 plus several ANSI X3.64 and ISO 2022 functions and also provides
33 configurable input and output translation, serial port support,
34 configurable logging, multi-user support, and many character encodings,
35 including UTF-8. Screen sessions can be detached and resumed
36 later on a different terminal.
37 </para>
[fc7afd0c]38
[d0c42be]39 &lfs113_checked;
[a263ccb3]40
[5b6516d]41 <bridgehead renderas="sect3">Package Information</bridgehead>
42 <itemizedlist spacing="compact">
43 <listitem>
[b7a85cd9]44 <para>
45 Download (HTTP): <ulink url="&screen-download-http;"/>
46 </para>
[5b6516d]47 </listitem>
48 <listitem>
[b7a85cd9]49 <para>
50 Download (FTP): <ulink url="&screen-download-ftp;"/>
51 </para>
[5b6516d]52 </listitem>
53 <listitem>
[b7a85cd9]54 <para>
55 Download MD5 sum: &screen-md5sum;
56 </para>
[5b6516d]57 </listitem>
58 <listitem>
[b7a85cd9]59 <para>
60 Download size: &screen-size;
61 </para>
[5b6516d]62 </listitem>
63 <listitem>
[b7a85cd9]64 <para>
65 Estimated disk space required: &screen-buildsize;
66 </para>
[5b6516d]67 </listitem>
68 <listitem>
[b7a85cd9]69 <para>
70 Estimated build time: &screen-time;
71 </para>
[5b6516d]72 </listitem>
73 </itemizedlist>
[42fc81b]74<!--
[81f86f9e]75 <bridgehead renderas="sect3">Additional Downloads</bridgehead>
76 <itemizedlist spacing="compact">
77 <listitem>
78 <para>
79 Required patch:
80 <ulink url="&patch-root;/screen-&screen-version;-upstream_fixes-1.patch"/>
81 </para>
82 </listitem>
83 </itemizedlist>
[42fc81b]84-->
[5b6516d]85 <bridgehead renderas="sect3">Screen Dependencies</bridgehead>
[fc7afd0c]86
[5b6516d]87 <bridgehead renderas="sect4">Optional</bridgehead>
[47274444]88 <para role="optional">
89 <xref linkend="linux-pam"/>
90 </para>
[fc7afd0c]91
[1039de3]92 <para condition="html" role="usernotes">User Notes:
93 <ulink url="&blfs-wiki;/screen"/></para>
94
[5b6516d]95 </sect2>
[fc7afd0c]96
[5b6516d]97 <sect2 role="installation">
98 <title>Installation of Screen</title>
[42fc81b]99<!--
[81f86f9e]100 <para>
101 First, apply a patch from upstream that fixes a security vulnerability:
102 </para>
103
104<screen><userinput remap="pre">patch -Np1 -i ../screen-&screen-version;-upstream_fixes-1.patch</userinput></screen>
[42fc81b]105-->
[b7a85cd9]106 <para>
107 Install <application>Screen</application> by running the
108 following commands:
109 </para>
[5b6516d]110
[42fc81b]111<screen><userinput>sh autogen.sh &amp;&amp;
112./configure --prefix=/usr \
[066dad5a]113 --infodir=/usr/share/info \
114 --mandir=/usr/share/man \
[7715803]115 --with-socket-dir=/run/screen \
[9506e84]116 --with-pty-group=5 \
[8f29aa2]117 --with-sys-screenrc=/etc/screenrc &amp;&amp;
118
[b0d6e4b]119sed -i -e "s%/usr/local/etc/screenrc%/etc/screenrc%" {etc,doc}/* &amp;&amp;
[5b6516d]120make</userinput></screen>
121
[b7a85cd9]122 <para>
123 This package does not come with a test suite.
124 </para>
[fc7afd0c]125
[b7a85cd9]126 <para>
127 Now, as the <systemitem class="username">root</systemitem> user:
128 </para>
[fc7afd0c]129
[5b6516d]130<screen role="root"><userinput>make install &amp;&amp;
131install -m 644 etc/etcscreenrc /etc/screenrc</userinput></screen>
[fc7afd0c]132
[5b6516d]133 </sect2>
[fc7afd0c]134
[5ee44e37]135 <sect2 role="commands">
136 <title>Command Explanations</title>
137
[b7a85cd9]138 <para>
139 <parameter>--with-socket-dir=/run/screen</parameter>: This option
140 places the per-user sockets in a standard location.
141 </para>
142
143 <para>
144 <parameter>--with-sys-screenrc=/etc/screenrc</parameter>: This option
145 places the global screenrc file in <filename
146 class='directory'>/etc</filename>.
147 </para>
148
149 <para>
150 <parameter>--with-pty-group=5</parameter>: This option sets the gid
151 to the value used by LFS.
152 </para>
153
154 <para>
155 <command>sed -i -e "s%/usr/local/etc/screenrc%/etc/screenrc%"
156 {etc,doc}/*</command>: This command corrects the configuration and
157 documentation files to the location that is used here for the global
158 screenrc file.
159 </para>
[bccbdaea]160
[5ee44e37]161 </sect2>
162
[5b6516d]163 <sect2 role="configuration">
164 <title>Configuring Screen</title>
165
166 <sect3 id ="screen-config">
167 <title>Config Files</title>
[fc7afd0c]168
[b7a85cd9]169 <para>
170 <filename>/etc/screenrc</filename> and
171 <filename>~/.screenrc</filename>
172 </para>
[fc7afd0c]173
[5b6516d]174 <indexterm zone="screen screen-config">
175 <primary sortas="e-AA.screenrc">~/.screenrc</primary>
176 </indexterm>
[fc7afd0c]177
[5b6516d]178 <indexterm zone="screen screen-config">
179 <primary sortas="e-etc-screenrc">/etc/screenrc</primary>
180 </indexterm>
[fc7afd0c]181
[5b6516d]182 </sect3>
183
184 <sect3>
185 <title>Configuration Information</title>
[fc7afd0c]186
[b7a85cd9]187 <para>
188 You may want to look at the example configuration file that was
189 installed and customize it for your needs.
190 </para>
[fc7afd0c]191
[5b6516d]192 </sect3>
[fc7afd0c]193
[5b6516d]194 </sect2>
[fc7afd0c]195
[5b6516d]196 <sect2 role="content">
197 <title>Contents</title>
198
199 <segmentedlist>
[d9962703]200 <segtitle>Installed Program</segtitle>
[5b6516d]201 <segtitle>Installed Libraries</segtitle>
[d9962703]202 <segtitle>Installed Directory</segtitle>
[fc7afd0c]203
[5b6516d]204 <seglistitem>
[7715803]205 <seg>screen (symlink) and screen-&screen-version;</seg>
[5b6516d]206 <seg>None</seg>
[7715803]207 <seg>/usr/share/screen and /run/screen</seg>
[5b6516d]208 </seglistitem>
209 </segmentedlist>
[fc7afd0c]210
[5b6516d]211 <variablelist>
212 <bridgehead renderas="sect3">Short Descriptions</bridgehead>
213 <?dbfo list-presentation="list"?>
214 <?dbhtml list-presentation="table"?>
[fc7afd0c]215
[5b6516d]216 <varlistentry id="screen-prog">
217 <term><command>screen</command></term>
218 <listitem>
[b7a85cd9]219 <para>
[4c24eb0a]220 is a terminal multiplexor with VT100/ANSI terminal emulation
[b7a85cd9]221 </para>
[5b6516d]222 <indexterm zone="screen screen-prog">
223 <primary sortas="b-screen">screen</primary>
224 </indexterm>
225 </listitem>
226 </varlistentry>
[fc7afd0c]227
[5b6516d]228 </variablelist>
[fc7afd0c]229
[5b6516d]230 </sect2>
[b0d6e4b]231
232</sect1>
Note: See TracBrowser for help on using the repository browser.