启动一个新的NetBSD系统后,最好的起点是 afterboot(8) 手册。 它涵盖了很多详尽的信息以及有用的配置。
man name 显示“name” 命令的用户手册,而 man -k name 显示一个有关 “name” 的用户手册清单。(你也可以使用 apropos 命令)。
要学习 man 命令的基本用法, 键入:
# man man这个手册分成9个小节, 不仅包含了有关命令的基本信息而且描述了NetBSD系统的一些基本特性和结构。 例如, 我们看一下 hier(7) 的用户手册, 它描述了NetBSD使用的文件系统的布局细节。
# man hier其它相似的手册是 release(7) 和 pkgsrc(7)。 用户手册每小节全有一个 intro(8) 手册页面 ,描述了它的内容。 例如, 试一下:
# man 8 intro用户手册根据其记录的内容分成几个小节:
- general commands (tools and utilities), see intro(1)
- system calls and error numbers, see intro(2)
- C libraries, see intro(3)
- special files and hardware support, see intro(4)
- file formats, see intro(5)
- games, see intro(6)
- miscellaneous information pages, see intro(7)
- system maintenance and operation commands, see intro(8)
- kernel internals, see intro(9)
# man 3 time
要查看所有的相关页面:
# man -w time# man -a time