Koozali.org: home of the SME Server

man pages missing

Doug McCaughan

man pages missing
« on: January 09, 2002, 04:55:55 PM »
Hello All!

One of my partitions recently became so currupted I had to completely reinstall SME 5.

Originally I had SME 4 installed then upgraded to 5 and "man ???" worked to pull up the manual pages of most commands. However, just installing a fresh v5 seems to not install the man pages.

Any suggestions on how to get the man pages installed?

Thanks.
Doug

Damien Curtain

Re: man pages missing
« Reply #1 on: January 09, 2002, 11:15:26 PM »
Doug McCaughan wrote:
>
> Hello All!
>
> One of my partitions recently became so currupted I had to
> completely reinstall SME 5.
>
> Originally I had SME 4 installed then upgraded to 5 and "man
> ???" worked to pull up the manual pages of most commands.
> However, just installing a fresh v5 seems to not install the
> man pages.
>
> Any suggestions on how to get the man pages installed?

Whats your manpath set to? Most man pages live in /usr/share/man, does this exist, if so is it in your system manpath? Are you overiding this with a local env setting in your shell?

Also re the info pages there? Theyre often more frequently updated on the linux side.
--
 Damien

Kelvin

Re: man pages missing
« Reply #2 on: January 10, 2002, 12:53:28 AM »
If you did a fresh install of SME 5, you will not have man as it is not installed by default.

You will need to either install it off the CD manually or download and install the current version off the net.

Kelvin

Paul Lakra

Re: man pages missing
« Reply #3 on: January 10, 2002, 04:31:37 PM »
I am very new to Linux so excuse the naive question but the man as far as I can tell is not on the CD-ROM image I downloaded. I s ti somewhere on the Red Hat site as I cannot find it on Mitel's.

Kelvin

Re: man pages missing
« Reply #4 on: January 10, 2002, 11:20:04 PM »
Hi Paul,

The man program should be located at :-

   \e-smith\RPMS

on the CD-ROM. On mine it's called man-1.5i2-0.7x.i386.rpm

Otherwise, download the current version from the net.

Kelvin

Paul Lakra

Re: man pages missing
« Reply #5 on: January 11, 2002, 01:20:11 AM »
Thanks Kevin - it is there its just I did not know what I was looking at. Sorry - I really am green at this - How do I install it?

robert

Re: man pages missing
« Reply #6 on: January 12, 2002, 06:39:50 PM »
1. Insert cd-rom into server's cd-rom drive and mount cd-rom

mount /dev/cdrom /mnt/cdrom

2. Install RPM through rpm program

rpm -Uvh /mnt/cdrom/e-smith/RPMS/man-1.5i2-0.7x.i386.rpm

(tip: use the auto-completion feature of your shell -> type above path up to 'man-', then press .)

3. When you're done with cd-rom, unmount it

umount /mnt/cdrom
(yes, that's 'umount', not 'unmount'; or alternatively:)
eject

4. With man installed, read the man pages for 'rpm' and 'mount'

Paul Lakra

Re: man pages missing
« Reply #7 on: January 13, 2002, 10:10:54 PM »
Thanks everyone - so easy when you know how!