回答:
マンページセクション。
ls(1)mmap(2)system(3)sudoers(4)lmhosts(5)fortune(6)regex(7)iwconfig(8)ksoftirqd(9)セクションの背後にある理由mkdir(1)は、マニュアルページを共有するものがあることです- 
 コマンドはディレクトリを作成するために使用されるのに対しmkdir(2)、Cプログラムではディレクトリを作成するために使用できるシステムコールです。したがって、さまざまなセクション。
注釈付きの参考文献[1,2](推奨):
http : //www.gsp.com/support/man/-セクション
http://manpages.unixforum.co.uk/man-pages/に従って配置されたFreeBSDマンページlinux / suse-linux-10.1 / -セクション
http://www.december.com/unix/ref/mansec.htmlに従って配置されたSUSEマンページ-マンページセクションのさらに別の表。リストの最初の基礎(詳細については、この投稿の以前の編集を参照)
[1]説明と例は、私の頭の中の自発的な偽造です。
[2]それは学術的に健全であるということではありませんが、参照のリクエストはウィキペディアの成長を遅らせたものの一つです。懐疑論者は、他の人が参照するすべてを取得しようとしていると貢献者の一部は、ちょうど得る方法、さらにはない役に立た/根拠のないものを追加しようとする人たちが適切にプールから削除されていること(彼らはタグ付けされた参照要求タグを取得し、何も答えることがあまりにもイライラ追加されたコンテンツは削除されません...)
man <number> <command>例:man 1 mkdirandman 2 mkdir
                    からの抜粋man man:
The table below shows the section numbers of the manual followed by the types 
of pages they contain.
  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  conven‐
      tions), e.g. man(7), groff(7)
  8   System administration commands (usually only for root)
  9   Kernel routines [Non standard]
man manするだけで残りは
                    番号は、コマンドまたはC関数が含まれているマニュアルページセクションを参照します。
したがってmount(8)、次のコマンドを実行することで、のmanページにアクセスできます。
man 8 mount
またはftok(2)そのようなもの:
man 2 ftok
man mount(8)かman ftok(2)?
                    man man)。
                    これらは、従来のUnixマニュアルページのセクション番号です。あなたの質問は1年前にUnixとLinux Stack Exchangeで既に回答されています。マニュアルページの数字は何を意味していますか?。
これらはmanセクション番号です。
Linux manページのセクションと例:
linuxのmanセクションリストとUnix System Vのバリアント(Solaris、BSD、SCO、Venixなど)のリストには違いがあることに注意してください。詳細はmanページwikiから 。
興味深いことに、有名なUnixおよびCのクリエーターであるケントンプソンとデニスリッチーは、マネージャーの主張で最初のマニュアルページを書きました。それはおなじみの音ですか?
Linuxのmanエントリに特定のセクション番号を選択するにprintfは(セクション1および3にエントリがあります)。
man 3 printf
cfdisk(1ページのqat ENDを使用して次のページに移動するには、すべてのmanエントリを表示します。
man -a cfdisk
特定のコマンドのすべてのエントリを一覧表示するにはapropos
apropos cfdisk
マニュアルのセクション番号です。昔の霧にさかのぼると、これはその特定のマニュアルページを含む物理的なバインダーを指していました。
man最新のLinuxシステムのマンページから:
   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]
Arch Linuxの非標準セクションを含むマンページセクション:
0     Header files
0p    Header files (POSIX)
1     Executable programs or shell commands
1p    Executable programs or shell commands (POSIX)
2     System calls (functions provided by the kernel)
3     Library calls (functions within program libraries)
3n    Network Functions
3p    Perl Modules
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
l     Local documentation
n     New manpages
(konquerorを使用するアイデアについて@ greg0ireに感謝します)