How to install manpages without sysinstall?

Sysinstall doesn't work on my machine (segmentation fault, core dumped). I managed to install almost everything but how to install manpages?
 
Grab latest source code (use cvsup) and go to /usr/src/share/man
Code:
cd /usr/src/share/man
make install
 
The difference between vivek and noobster is that with vivek's suggestion you can get more updated man pages.
 
vivek said:
Grab latest source code (use cvsup) and go to /usr/src/share/man
Code:
cd /usr/src/share/man
make install
There are two problems with this approach. One is that of the pages installed via this method, there may be inconsistencies with the actual installed binaries. Two, this method doesn't install the complete man page set and you will miss many entries from commonly used utilities.

The real set of instruction to do this properly is:
Install the src matching your version, the run the following commands:# cd /usr/src
# make all-man maninstall
 
Back
Top