2004-05-03 11:59:46 +01:00
|
|
|
<?xml version="1.0" encoding="ISO-8859-1"?>
|
|
|
|
<!DOCTYPE sect1 PUBLIC "-//OASIS//DTD DocBook XML V4.3//EN" "http://www.oasis-open.org/docbook/xml/4.3/docbookx.dtd" [
|
|
|
|
<!ENTITY % general-entities SYSTEM "../general.ent">
|
|
|
|
%general-entities;
|
|
|
|
]>
|
2004-05-16 01:08:42 +01:00
|
|
|
<sect1 id="ch-system-man" xreflabel="Man" role="wrap">
|
2004-05-03 11:59:46 +01:00
|
|
|
<title>Man-&man-version;</title>
|
|
|
|
<?dbhtml filename="man.html"?>
|
|
|
|
|
|
|
|
<indexterm zone="ch-system-man"><primary sortas="a-Man">Man</primary></indexterm>
|
2001-01-24 00:31:17 +00:00
|
|
|
|
2004-05-16 01:08:42 +01:00
|
|
|
<sect2 role="package"><title/>
|
2004-01-12 23:23:50 +00:00
|
|
|
<para>The Man package contains programs for finding and viewing manual pages.</para>
|
|
|
|
|
2004-05-16 01:08:42 +01:00
|
|
|
<segmentedlist>
|
|
|
|
<segtitle>&buildtime;</segtitle>
|
|
|
|
<segtitle>&diskspace;</segtitle>
|
|
|
|
<seglistitem><seg>0.1 SBU</seg><seg>1.9MB</seg></seglistitem>
|
|
|
|
</segmentedlist>
|
2004-05-03 11:59:46 +01:00
|
|
|
|
2004-05-16 01:08:42 +01:00
|
|
|
<segmentedlist>
|
|
|
|
<segtitle>Man installation depends on</segtitle>
|
|
|
|
<seglistitem><seg>Bash, Binutils, Coreutils, Gawk, GCC,
|
|
|
|
Glibc, Grep, Make, Sed</seg></seglistitem>
|
|
|
|
</segmentedlist>
|
|
|
|
</sect2>
|
2001-07-17 19:51:18 +01:00
|
|
|
|
2004-05-16 01:08:42 +01:00
|
|
|
<sect2 role="installation">
|
2003-11-01 22:31:50 +00:00
|
|
|
<title>Installation of Man</title>
|
|
|
|
|
|
|
|
<para>We'll make three adjustments to the sources of Man.</para>
|
|
|
|
|
2003-11-21 03:39:20 +00:00
|
|
|
<para>The first is a patch which allows Man to work better with recent releases
|
|
|
|
of Groff. In particular, man pages will now display using the full terminal
|
|
|
|
width instead of being limited to 80 characters:</para>
|
2003-11-01 22:31:50 +00:00
|
|
|
|
2004-05-03 23:08:10 +01:00
|
|
|
<screen><userinput>patch -Np1 -i ../man-&man-version;-80cols-1.patch</userinput></screen>
|
2003-11-01 22:31:50 +00:00
|
|
|
|
2003-11-21 03:39:20 +00:00
|
|
|
<para>The second is a sed substitution to add the <emphasis>-R</emphasis>
|
|
|
|
switch to the <emphasis>PAGER</emphasis> variable so that escape sequences are
|
|
|
|
properly handled by Less:</para>
|
2003-11-01 22:31:50 +00:00
|
|
|
|
2003-11-21 03:39:20 +00:00
|
|
|
<screen><userinput>sed -i 's/-is/&R/' configure</userinput></screen>
|
2003-11-01 22:31:50 +00:00
|
|
|
|
2004-05-03 11:59:46 +01:00
|
|
|
<para>The third is also a sed substitution to comment out the <quote>MANPATH
|
|
|
|
/usr/man</quote> line in the <filename>man.conf</filename> file to prevent
|
|
|
|
redundant results when using programs such as <command>whatis</command>:</para>
|
2003-11-01 22:31:50 +00:00
|
|
|
|
2003-11-21 03:44:44 +00:00
|
|
|
<screen><userinput>sed -i 's%MANPATH./usr/man%#&%' src/man.conf.in</userinput></screen>
|
2003-11-21 03:39:20 +00:00
|
|
|
|
2003-11-01 22:31:50 +00:00
|
|
|
<para>Now prepare Man for compilation:</para>
|
|
|
|
|
2004-05-12 19:50:25 +01:00
|
|
|
<screen><userinput>./configure -confdir=/etc</userinput></screen>
|
2003-11-01 22:31:50 +00:00
|
|
|
|
|
|
|
<para>The meaning of the configure options:</para>
|
|
|
|
|
|
|
|
<itemizedlist>
|
|
|
|
<listitem><para><userinput>-confdir=/etc</userinput>: This tells the
|
2004-02-01 21:49:10 +00:00
|
|
|
<command>man</command> program to look for the <filename>man.conf</filename>
|
2003-11-01 22:31:50 +00:00
|
|
|
configuration file in the <filename>/etc</filename> directory.</para></listitem>
|
|
|
|
</itemizedlist>
|
|
|
|
|
|
|
|
<para>Compile the package:</para>
|
|
|
|
|
|
|
|
<screen><userinput>make</userinput></screen>
|
|
|
|
|
2004-05-03 11:59:46 +01:00
|
|
|
<para>Lastly, install it:</para>
|
2003-11-01 22:31:50 +00:00
|
|
|
|
|
|
|
<screen><userinput>make install</userinput></screen>
|
|
|
|
|
2004-05-03 11:59:46 +01:00
|
|
|
<note><para>If you wish to disable SGR (Select Graphic Rendition) escape sequences, you should edit the
|
2004-02-01 21:49:10 +00:00
|
|
|
<filename>man.conf</filename> file and add the <emphasis>-c</emphasis> switch
|
|
|
|
to NROFF.</para></note>
|
2003-11-01 22:31:50 +00:00
|
|
|
|
2004-05-06 17:22:04 +01:00
|
|
|
<para>If your character set uses 8-bit characters, search for the line
|
|
|
|
beginning with "NROFF" in /etc/man.conf, and verify that it coincides
|
|
|
|
with the following:</para>
|
|
|
|
|
|
|
|
<screen>NROFF /usr/bin/nroff -Tlatin1 -mandoc</screen>
|
|
|
|
|
|
|
|
<para>Note that you should use "latin1" even if it is not the character set
|
|
|
|
of your locale. The reason is that,
|
|
|
|
according to the specification, <application>groff</application> has
|
|
|
|
no means of typesetting characters outside ISO-8859-1
|
|
|
|
without some strange escape codes, and localized manual
|
|
|
|
pages are therefore really a hack. When formatting manual pages,
|
|
|
|
<application>groff</application> thinks that they are in the ISO-8859-1
|
|
|
|
encoding and this <emphasis>-Tlatin1</emphasis> switch tells
|
|
|
|
<application>groff</application> to use the same encoding for output.
|
|
|
|
Since <application>groff</application> does no recoding of input characters,
|
|
|
|
the formatted result is really in the same encoding as input (although
|
|
|
|
<application>groff</application> doesn't know that it is not ISO-8859-1)
|
|
|
|
and therefore it is usable as the input for a pager.</para>
|
|
|
|
|
|
|
|
<para>Of course, this hack does not solve the problem of non-working
|
|
|
|
<command>man2dvi</command> program for localized manual
|
|
|
|
pages in non-ISO-8859-1 locales.
|
|
|
|
Also, it does not work at all with multibyte character sets.
|
|
|
|
The first problem does not have a solution currently. The second
|
|
|
|
one is not of a concern because the LFS installation does not support
|
|
|
|
multibyte character sets properly anyway. You may want to look at
|
|
|
|
internationalization related hints, though.</para>
|
|
|
|
|
2003-11-01 22:31:50 +00:00
|
|
|
<para>You may want to also take a look at the BLFS page at
|
|
|
|
<ulink url="&blfs-root;view/cvs/postlfs/compressdoc.html"/> which deals with
|
|
|
|
formatting and compression issues for man pages.</para>
|
|
|
|
|
|
|
|
</sect2>
|
2001-01-24 00:31:17 +00:00
|
|
|
|
2004-01-12 23:23:50 +00:00
|
|
|
|
2004-05-17 22:55:01 +01:00
|
|
|
<sect2 id="contents-man" role="content"><title>Contents of Man</title>
|
2004-05-03 11:59:46 +01:00
|
|
|
|
2004-05-17 22:55:01 +01:00
|
|
|
<segmentedlist>
|
|
|
|
<segtitle>Installed programs</segtitle>
|
|
|
|
<seglistitem><seg>apropos, makewhatis, man,
|
|
|
|
man2dvi, man2html and whatis</seg></seglistitem>
|
|
|
|
</segmentedlist>
|
2004-05-03 11:59:46 +01:00
|
|
|
|
2004-05-17 22:55:01 +01:00
|
|
|
<variablelist><title>Short descriptions</title>
|
2004-05-03 11:59:46 +01:00
|
|
|
|
2004-05-17 22:55:01 +01:00
|
|
|
<varlistentry>
|
|
|
|
<term id="apropos"><command>apropos</command></term>
|
|
|
|
<listitem>
|
2004-05-03 11:59:46 +01:00
|
|
|
<indexterm zone="ch-system-man apropos"><primary sortas="b-apropos">apropos</primary></indexterm>
|
2004-05-17 22:55:01 +01:00
|
|
|
<para>searches the whatis database and displays
|
2004-05-03 11:59:46 +01:00
|
|
|
the short descriptions of system commands that contain a given string.</para>
|
2004-05-17 22:55:01 +01:00
|
|
|
</listitem>
|
|
|
|
</varlistentry>
|
2004-05-03 11:59:46 +01:00
|
|
|
|
2004-05-17 22:55:01 +01:00
|
|
|
<varlistentry>
|
|
|
|
<term id="makewhatis"><command>makewhatis</command></term>
|
|
|
|
<listitem>
|
2004-05-03 11:59:46 +01:00
|
|
|
<indexterm zone="ch-system-man makewhatis"><primary sortas="b-makewhatis">makewhatis</primary></indexterm>
|
2004-05-17 22:55:01 +01:00
|
|
|
<para>builds the whatis database. It reads
|
2004-05-03 11:59:46 +01:00
|
|
|
all the manual pages in the manpath and for each page writes the name and a
|
|
|
|
short description in the whatis database.</para>
|
2004-05-17 22:55:01 +01:00
|
|
|
</listitem>
|
|
|
|
</varlistentry>
|
2001-01-24 00:31:17 +00:00
|
|
|
|
2004-05-17 22:55:01 +01:00
|
|
|
<varlistentry>
|
|
|
|
<term id="man"><command>man</command></term>
|
|
|
|
<listitem>
|
2004-05-03 11:59:46 +01:00
|
|
|
<indexterm zone="ch-system-man man"><primary sortas="b-man">man</primary></indexterm>
|
2004-05-17 22:55:01 +01:00
|
|
|
<para>formats and displays the requested on-line manual page.</para>
|
|
|
|
</listitem>
|
|
|
|
</varlistentry>
|
2004-05-03 11:59:46 +01:00
|
|
|
|
2004-05-17 22:55:01 +01:00
|
|
|
<varlistentry>
|
|
|
|
<term id="man2dvi"><command>man2dvi</command></term>
|
|
|
|
<listitem>
|
2004-05-03 11:59:46 +01:00
|
|
|
<indexterm zone="ch-system-man man2dvi"><primary sortas="b-man2dvi">man2dvi</primary></indexterm>
|
2004-05-17 22:55:01 +01:00
|
|
|
<para>converts a manual page into dvi format.</para>
|
|
|
|
</listitem>
|
|
|
|
</varlistentry>
|
2004-05-03 11:59:46 +01:00
|
|
|
|
2004-05-17 22:55:01 +01:00
|
|
|
<varlistentry>
|
|
|
|
<term id="man2html"><command>man2html</command></term>
|
|
|
|
<listitem>
|
2004-05-03 11:59:46 +01:00
|
|
|
<indexterm zone="ch-system-man man2html"><primary sortas="b-man2html">man2html</primary></indexterm>
|
2004-05-17 22:55:01 +01:00
|
|
|
<para>converts a manual page into html.</para>
|
|
|
|
</listitem>
|
|
|
|
</varlistentry>
|
2004-05-03 11:59:46 +01:00
|
|
|
|
2004-05-17 22:55:01 +01:00
|
|
|
<varlistentry>
|
|
|
|
<term id="whatis"><command>whatis</command></term>
|
|
|
|
<listitem>
|
2004-05-03 11:59:46 +01:00
|
|
|
<indexterm zone="ch-system-man whatis"><primary sortas="b-whatis">whatis</primary></indexterm>
|
2004-05-17 22:55:01 +01:00
|
|
|
<para>searches the whatis database and displays the short descriptions of system
|
|
|
|
commands that contain the given keyword as a separate word.</para>
|
|
|
|
</listitem>
|
|
|
|
</varlistentry>
|
|
|
|
</variablelist>
|
2004-05-03 11:59:46 +01:00
|
|
|
|
|
|
|
</sect2>
|
|
|
|
|
|
|
|
</sect1>
|