source: general/genutils/screen.xml@ f6f2121

10.0 10.1 11.0 11.1 11.2 11.3 12.0 12.1 6.0 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 f6f2121 was f6f2121, checked in by Igor Živković <igor@…>, 19 years ago

Screen: made a note about LFS not supporting UTF-8.

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

  • Property mode set to 100644
File size: 3.9 KB
Line 
1<?xml version="1.0" encoding="ISO-8859-1"?>
2<!DOCTYPE sect1 PUBLIC "-//OASIS//DTD DocBook XML V4.3//EN"
3 "http://www.oasis-open.org/docbook/xml/4.3/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-size "825 KB">
10<!ENTITY screen-buildsize "5.8 MB">
11<!ENTITY screen-time "0.17 SBU">
12
13]>
14
15<sect1 id="screen" xreflabel="Screen-&screen-version;">
16<sect1info>
17<othername>$LastChangedBy$</othername>
18<date>$Date$</date>
19</sect1info>
20<?dbhtml filename="screen.html"?>
21<title>Screen-&screen-version;</title>
22
23<sect2>
24<title>Introduction to <application>Screen</application></title>
25
26<para><application>Screen</application> is a terminal multiplexor that
27runs several separate processes, typically interactive shells, on a
28single physical character-based terminal. Each virtual terminal emulates
29a <acronym>DEC</acronym> VT100 plus several <acronym>ANSI</acronym>
30X3.64 and <acronym>ISO</acronym> 2022 functions and also supports
31configurable input and output translation, serial port support,
32configurable logging, multi-user support, and <acronym>UTF</acronym>-8
33character encoding support (currently not supported by
34<acronym>LFS</acronym>). Screen sessions can be detached and resumed
35later on a different terminal.</para>
36
37<sect3><title>Package information</title>
38<itemizedlist spacing='compact'>
39<listitem><para>Download (HTTP): <ulink url="&screen-download-http;"/></para></listitem>
40<listitem><para>Download (FTP): <ulink url="&screen-download-ftp;"/></para></listitem>
41<listitem><para>Download size: &screen-size;</para></listitem>
42<listitem><para>Estimated Disk space required: &screen-buildsize;</para></listitem>
43<listitem><para>Estimated build time: &screen-time;</para></listitem></itemizedlist>
44</sect3>
45
46<sect3><title><application>Screen</application> dependencies</title>
47<sect4><title>Optional</title>
48<para><xref linkend="Linux_PAM"/>
49</para></sect4>
50</sect3>
51
52</sect2>
53
54<sect2>
55<title>Installation of <application>Screen</application></title>
56
57<para>Install <application>Screen</application> by running the
58following commands:</para>
59
60<screen><userinput><command>./configure --prefix=/usr --with-socket-dir=/var/run/screen \
61 --with-sys-screenrc=/etc/screenrc &amp;&amp;
62sed -i -e "s%/usr/local/etc/screenrc%/etc/screenrc%" {etc,doc}/* &amp;&amp;
63make &amp;&amp;
64make install &amp;&amp;
65install -m 644 etc/etcscreenrc /etc/screenrc</command></userinput></screen>
66
67</sect2>
68
69<sect2>
70<title>Configuring <application>Screen</application></title>
71
72<sect3><title>Config files</title>
73
74<para><filename>/etc/screenrc</filename>,
75<filename>~/.screenrc</filename>
76</para></sect3>
77
78<sect3><title>Configuration Information</title>
79
80<para>You may want to look at the example configuration file that we
81installed and customize it for your needs.</para>
82</sect3>
83
84</sect2>
85
86<sect2>
87<title>Contents</title>
88
89<para>This package contains <command>screen</command>.</para>
90
91</sect2>
92
93<sect2><title>Description</title>
94
95<sect3><title>screen</title>
96<para><command>screen</command> is a terminal multiplexor with
97VT100/<acronym>ANSI</acronym> terminal emulation.</para></sect3>
98
99</sect2>
100
101</sect1>
Note: See TracBrowser for help on using the repository browser.