0

when I type man qmail I get No manual entry for qmail. I would like to be able to type man qmail and one screen opens up that includes all the man sections for qmail.

Is there a way I can open up man1, man5, man7, man8 all at once and then make that command an alias so that I type in "man qmail" and all the documentation related to qmail opens up?

This article was useful on man knowledge

Same with this image:

Man page segmentation diagram

Karu
  • 4,922
mister mcdoogle
  • 181
  • 1
  • 3
  • 20

1 Answers1

1

To directly answer the question: man -a (whatever) may be what you're looking for - this will sequentially and interactively bring up all man pages that match the text you enter, but it will likely bring up way more than you actually wanted.

But your problem is different. Your error message indicates that you have no manpages for qmail available.

First, ensure that the appropriate manpage packages are installed via yum. For CentOS 6 these are the packages man man-pages. For 7 and 8, use man-pages man-db man.

If those commands installed anything, try man qmail again.

One thing to note about qmail, is that its documentation is spread out since qmail uses multiple different segmented applications to handle mail delivery. man qmail will bring up the top-level documentation, and therein you'll be given the names of the other programs which have their own pages such as qmail-control and qmail-read.

Karu
  • 4,922