From owner-freebsd-questions Mon Apr 16 18:26:59 2001 Delivered-To: freebsd-questions@freebsd.org Received: from dsl-64-193-218-89.telocity.com (dsl-64-193-218-89.telocity.com [64.193.218.89]) by hub.freebsd.org (Postfix) with SMTP id 693B137B424 for ; Mon, 16 Apr 2001 18:26:56 -0700 (PDT) (envelope-from lucas@slb.to) Received: (qmail 31094 invoked by uid 1000); 17 Apr 2001 01:27:16 -0000 Date: Mon, 16 Apr 2001 20:27:16 -0500 From: Lucas Bergman To: "Potts, Ross" Cc: freebsd-questions@freebsd.org Subject: Re: adding man pages? Message-ID: <20010416202716.A27536@billygoat.slb.to> Reply-To: lucas@slb.to References: <95B669A7D872D41182A600508BDFFB8C01BECB41@mlbmx7.ess.harris.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5i In-Reply-To: <95B669A7D872D41182A600508BDFFB8C01BECB41@mlbmx7.ess.harris.com>; from rpotts@harris.com on Mon, Apr 16, 2001 at 03:44:58PM -0400 Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG > from the CL, how can I make available the manpages that AMANDA (the > backup program) makes available all the time? Edit /etc/manpath.config. This will make the man pages available for 'man whatever'. If you want the pages to figure into apropos/whatis searches, do # sh /etc/periodic/weekly/320.whatis after you edit the config file, or wait till the end of the week... :) See manpath(1) for more information. > Where does nroff figure into this? nroff is the formatter that takes the man pages (which are written in a macro language which nroff understands) and formats them for viewing on your console. Do # gzip -dc /usr/share/man/man1/man.1.gz | nroff -man | less to see what I mean. Lucas To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message