Answers:
联机帮助部分。
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 mkdir和man 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 8 mount
或ftok(2)类似这样的:
man 2 ftok
man mount(8)还是man ftok(2)?
                    man man)。
                    它们是传统Unix手册页的章节号。一年前,您的问题已经在Unix和Linux Stack Exchange 上得到了解答,手册页中的数字是什么意思?。
这些是man节号。
Linux手册页的部分和示例:
请注意,Linux的手册部分列表与Unix System V变体的手册部分列表(例如Solaris,BSD,SCO,Venix)有所不同。手册页Wiki上的更多详细信息 。
有趣的是,著名的Unix和C创建者Ken Thompson和Denis Ritchie在经理的坚持下写了第一本手册页。听起来很熟悉吗?
为 linux上的man条目选择特定的段号(printf第1和3节中有条目)。
man 3 printf
要查看的所有条目,请cfdisk使用(q在END一页上的进入下一页:
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
(感谢@ greg0ire使用konqueror的想法)