source: general/genutils/screen.xml@ f36bebcd

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 f36bebcd was f36bebcd, checked in by Bruce Dubbs <bdubbs@…>, 12 years ago

Add clang to llvm.
Add a note to screen about changing tty gid values.

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

  • Property mode set to 100644
File size: 5.9 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 screen-download-http "http://ftp.uni-erlangen.de/pub/utilities/screen/screen-&screen-version;.tar.gz">
8 <!ENTITY screen-download-ftp "ftp://ftp.uni-erlangen.de/pub/utilities/screen/screen-&screen-version;.tar.gz">
9 <!ENTITY screen-md5sum "8506fd205028a96c741e4037de6e3c42">
10 <!ENTITY screen-size "821 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 provides
36 configurable input and output translation, serial port support,
37 configurable logging, multi-user support, and many character encodings,
38 including UTF-8. Screen sessions can be detached and resumed
39 later on a different terminal.</para>
40
41 &lfs71_checked;
42
43 <bridgehead renderas="sect3">Package Information</bridgehead>
44 <itemizedlist spacing="compact">
45 <listitem>
46 <para>Download (HTTP): <ulink url="&screen-download-http;"/></para>
47 </listitem>
48 <listitem>
49 <para>Download (FTP): <ulink url="&screen-download-ftp;"/></para>
50 </listitem>
51 <listitem>
52 <para>Download MD5 sum: &screen-md5sum;</para>
53 </listitem>
54 <listitem>
55 <para>Download size: &screen-size;</para>
56 </listitem>
57 <listitem>
58 <para>Estimated disk space required: &screen-buildsize;</para>
59 </listitem>
60 <listitem>
61 <para>Estimated build time: &screen-time;</para>
62 </listitem>
63 </itemizedlist>
64
65 <bridgehead renderas="sect3">Screen Dependencies</bridgehead>
66
67 <bridgehead renderas="sect4">Optional</bridgehead>
68 <para role="optional"><xref linkend="linux-pam"/></para>
69
70 <para condition="html" role="usernotes">User Notes:
71 <ulink url="&blfs-wiki;/screen"/></para>
72
73 </sect2>
74
75 <sect2 role="installation">
76 <title>Installation of Screen</title>
77
78 <para>Install <application>Screen</application> by running the
79 following commands:</para>
80
81<screen><userinput>./configure --prefix=/usr \
82 --with-socket-dir=/var/run/screen \
83 --with-pty-group=4 \
84 --with-sys-screenrc=/etc/screenrc &amp;&amp;
85sed -i -e "s%/usr/local/etc/screenrc%/etc/screenrc%" {etc,doc}/* &amp;&amp;
86make</userinput></screen>
87
88 <para>This package does not come with a test suite.</para>
89
90 <para>Now, as the <systemitem class="username">root</systemitem> user:</para>
91
92<screen role="root"><userinput>make install &amp;&amp;
93install -m 644 etc/etcscreenrc /etc/screenrc</userinput></screen>
94
95 </sect2>
96
97 <sect2 role="commands">
98 <title>Command Explanations</title>
99
100 <para><parameter>--with-socket-dir=/var/run/screen</parameter>: This option
101 places the per-user sockets in a standard location.</para>
102
103 <para><parameter>--with-sys-screenrc=/etc/screenrc</parameter>: This option
104 places the global screenrc file in <filename
105 class='directory'>/etc</filename>. </para>
106
107 <para><parameter>--with-pty-group=4 </parameter>: This option sets the gid
108 to the value used by LFS.</para>
109
110 <note><para>Newer versions of LFS use the value 5 for the tty group. If
111 you are using the development version of LFS, change the pty-group option
112 to 5.</para></note>
113
114 <para><command>sed -i -e "s%/usr/local/etc/screenrc%/etc/screenrc%"
115 {etc,doc}/*</command>: This command corrects the configuration and
116 documentation files to the location that is used here for the global
117 screenrc file.</para>
118
119 </sect2>
120
121 <sect2 role="configuration">
122 <title>Configuring Screen</title>
123
124 <sect3 id ="screen-config">
125 <title>Config Files</title>
126
127 <para><filename>/etc/screenrc</filename> and
128 <filename>~/.screenrc</filename></para>
129
130 <indexterm zone="screen screen-config">
131 <primary sortas="e-AA.screenrc">~/.screenrc</primary>
132 </indexterm>
133
134 <indexterm zone="screen screen-config">
135 <primary sortas="e-etc-screenrc">/etc/screenrc</primary>
136 </indexterm>
137
138 </sect3>
139
140 <sect3>
141 <title>Configuration Information</title>
142
143 <para>You may want to look at the example configuration file that was
144 installed and customize it for your needs.</para>
145
146 </sect3>
147
148 </sect2>
149
150 <sect2 role="content">
151 <title>Contents</title>
152
153 <segmentedlist>
154 <segtitle>Installed Program</segtitle>
155 <segtitle>Installed Libraries</segtitle>
156 <segtitle>Installed Directory</segtitle>
157
158 <seglistitem>
159 <seg>screen</seg>
160 <seg>None</seg>
161 <seg>/var/run/screen</seg>
162 </seglistitem>
163 </segmentedlist>
164
165 <variablelist>
166 <bridgehead renderas="sect3">Short Descriptions</bridgehead>
167 <?dbfo list-presentation="list"?>
168 <?dbhtml list-presentation="table"?>
169
170 <varlistentry id="screen-prog">
171 <term><command>screen</command></term>
172 <listitem>
173 <para>is a terminal multiplexor with VT100/ANSI
174 terminal emulation.</para>
175 <indexterm zone="screen screen-prog">
176 <primary sortas="b-screen">screen</primary>
177 </indexterm>
178 </listitem>
179 </varlistentry>
180
181 </variablelist>
182
183 </sect2>
184
185</sect1>
Note: See TracBrowser for help on using the repository browser.