web-dev-qa-db-ja.com

マンセクションの内容の説明はどこにありますか?

セクション1はユーザーコマンド、セクション2はカーネルAPI、セクション3はCライブラリなどについて多くの場所で読んだことがあります。

私の質問はこれです:

コマンドライン(他のソースではなくコマンドライン)から、人間のセクションのコンテンツの種類の短い説明(上記のような)にどのように到達しますか?

PS:私はFedora19デスクトップを使用しています

4
explorest

man自体のマニュアルページ(これは取得するのとほぼ同じくらいメタです:)):

_man man
_

または、より具体的に( jordanmのコメント を参照):

_man 1 man
_

ページを取得するにはman(1)

上記からの引用:

以下の表は、マニュアルのセクション番号とそれに続くページのタイプを示しています。

_   1   Executable programs or Shell commands
   2   System calls (functions provided by the kernel)
   3   Library calls (functions within program libraries)
   4   Special files (usually found in /dev)
   5   File formats and conventions eg /etc/passwd
   6   Games
   7   Miscellaneous (including macro  packages  and  conventions),
       e.g. man(7), groff(7)
   8   System administration commands (usually only for root)
   9   Kernel routines [Non standard]
_
4
Joseph R.