source: chapter06/man.xml@ c2133bc

Last change on this file since c2133bc was c2133bc, checked in by Manuel Canales Esparcia <manuel@…>, 19 years ago

Upgraded to DocBook 4.4 DTD

git-svn-id: http://svn.linuxfromscratch.org/LFS/branches/multi-arch/BOOK@4605 4aa44e1e-78dd-0310-a6d2-fbcd4c07a689

  • Property mode set to 100644
File size: 6.2 KB
Line 
1<?xml version="1.0" encoding="ISO-8859-1"?>
2<!DOCTYPE sect1 PUBLIC "-//OASIS//DTD DocBook XML V4.4//EN" "http://www.oasis-open.org/docbook/xml/4.4/docbookx.dtd" [
3 <!ENTITY % general-entities SYSTEM "../general.ent">
4 %general-entities;
5]>
6<sect1 id="ch-system-man" role="wrap">
7<title>Man-&man-version;</title>
8<?dbhtml filename="man.html"?>
9
10<indexterm zone="ch-system-man"><primary sortas="a-Man">Man</primary></indexterm>
11
12<sect2 role="package"><title/>
13<para>The Man package contains programs for finding and viewing manual pages.</para>
14
15<segmentedlist>
16<segtitle>&buildtime;</segtitle>
17<segtitle>&diskspace;</segtitle>
18<seglistitem><seg>0.1 SBU</seg><seg>1.9MB</seg></seglistitem>
19</segmentedlist>
20
21<segmentedlist>
22<segtitle>Man installation depends on</segtitle>
23<seglistitem><seg>Bash, Binutils, Coreutils, Gawk, GCC,
24Glibc, Grep, Make, and Sed</seg></seglistitem>
25</segmentedlist>
26</sect2>
27
28<sect2 role="installation">
29<title>Installation of Man</title>
30
31<para>A few adjustments need to be made to the sources of Man.</para>
32
33<para>This a sed substitution to add the
34<parameter>-R</parameter> switch to the <envar>PAGER</envar>
35variable so that escape sequences are properly handled by Less:</para>
36
37<screen><userinput>sed -i 's@-is@&amp;R@g' configure</userinput></screen>
38
39<para>This a sed substitution to comment out the
40<quote>MANPATH /usr/man</quote> line in the
41<filename>man.conf</filename> file to prevent redundant results when
42using programs such as <command>whatis</command>:</para>
43
44<screen><userinput>sed -i 's@MANPATH./usr/man@#&amp;@g' src/man.conf.in</userinput></screen>
45
46<para>Prepare Man for compilation:</para>
47
48<screen><userinput>./configure -confdir=/etc</userinput></screen>
49
50<para>The meaning of the configure options:</para>
51
52<variablelist>
53<varlistentry>
54<term><parameter>-confdir=/etc</parameter></term>
55<listitem><para>This tells the <command>man</command> program to look for the
56<filename>man.conf</filename> configuration file in the <filename
57class="directory">/etc</filename> directory.</para></listitem>
58</varlistentry>
59</variablelist>
60
61<para>Compile the package:</para>
62
63<screen><userinput>make</userinput></screen>
64
65<para>Install the package:</para>
66
67<screen><userinput>make install</userinput></screen>
68
69<note><para>To disable Select Graphic Rendition (SGR) escape
70sequences, edit the <filename>man.conf</filename> file and
71add the <parameter>-c</parameter> switch to
72the <envar>NROFF</envar> variable.</para></note>
73
74<para>If the character set uses 8-bit characters, search for the line
75beginning with <quote>NROFF</quote> in
76<filename>/etc/man.conf</filename>, and verify that it looks as
77follows:</para>
78
79<screen>NROFF /usr/bin/nroff -Tlatin1 -mandoc</screen>
80
81<para>Note that <quote>latin1</quote> should be used even if it is not
82the character set of the locale. The reason is that, according to the
83specification, <command>groff</command> has no means of typesetting
84characters outside International Organization for Standards
85(ISO) 8859-1 without some strange escape codes. When formatting manual
86pages, <command>groff</command> thinks that they are in the ISO 8859-1
87encoding and this <parameter>-Tlatin1</parameter> switch tells
88<command>groff</command> to use the same encoding for output. Since
89<command>groff</command> does no recoding of input characters, the
90formatted result is really in the same encoding as input, and therefore
91it is usable as the input for a pager.</para>
92
93<para>This does not solve the problem of a non-working
94<command>man2dvi</command> program for localized manual pages in
95non-ISO 8859-1 locales. Also, it does not work with multibyte
96character sets. The first problem does not currently have a solution.
97The second issue is not of concern because the LFS installation does
98not support multibyte character sets.</para>
99
100<para>Additional information with regards to the compression of
101man and info pages can be found in the BLFS book at
102<ulink url="&blfs-root;view/cvs/postlfs/compressdoc.html"><phrase
103condition="pdf">http://www.linuxfromscratch.org/blfs/view/cvs/postlfs/
104compressdoc.html</phrase></ulink>.</para>
105
106<beginpage/>
107</sect2>
108
109
110<sect2 id="contents-man" role="content"><title>Contents of Man</title>
111
112<segmentedlist>
113<segtitle>Installed programs</segtitle>
114<seglistitem><seg>apropos, makewhatis, man,
115man2dvi, man2html, and whatis</seg></seglistitem>
116</segmentedlist>
117
118<variablelist><bridgehead renderas="sect3">Short Descriptions</bridgehead>
119<?dbfo list-presentation="list"?>
120
121<varlistentry id="apropos">
122<term><command>apropos</command></term>
123<listitem>
124<para>Searches the whatis database and displays the short descriptions
125of system commands that contain a given string</para>
126<indexterm zone="ch-system-man apropos"><primary sortas="b-apropos">apropos</primary></indexterm>
127</listitem>
128</varlistentry>
129
130<varlistentry id="makewhatis">
131<term><command>makewhatis</command></term>
132<listitem>
133<para>Builds the whatis database; it reads all the manual pages in the
134manpath and writes the name and a short description in the whatis
135database for each page</para>
136<indexterm zone="ch-system-man makewhatis"><primary sortas="b-makewhatis">makewhatis</primary></indexterm>
137</listitem>
138</varlistentry>
139
140<varlistentry id="man">
141<term><command>man</command></term>
142<listitem>
143<para>Formats and displays the requested on-line manual page</para>
144<indexterm zone="ch-system-man man"><primary sortas="b-man">man</primary></indexterm>
145</listitem>
146</varlistentry>
147
148<varlistentry id="man2dvi">
149<term><command>man2dvi</command></term>
150<listitem>
151<para>Converts a manual page into dvi format</para>
152<indexterm zone="ch-system-man man2dvi"><primary sortas="b-man2dvi">man2dvi</primary></indexterm>
153</listitem>
154</varlistentry>
155
156<varlistentry id="man2html">
157<term><command>man2html</command></term>
158<listitem>
159<para>Converts a manual page into HTML</para>
160<indexterm zone="ch-system-man man2html"><primary sortas="b-man2html">man2html</primary></indexterm>
161</listitem>
162</varlistentry>
163
164<varlistentry id="whatis">
165<term><command>whatis</command></term>
166<listitem>
167<para>Searches the whatis database and displays the short descriptions
168of system commands that contain the given keyword as a separate
169word</para>
170<indexterm zone="ch-system-man whatis"><primary sortas="b-whatis">whatis</primary></indexterm>
171</listitem>
172</varlistentry>
173</variablelist>
174
175</sect2>
176
177</sect1>
178
Note: See TracBrowser for help on using the repository browser.