1.从Solaris系统中获得联机帮助 Solaris 系统提供了非常丰富的联机帮助.这些帮助主要以两种形式存在,一种是命令 的参考手册页(Reference Manual Pages,也即我们常说的man page),另外一种是 Answer Book,是Sun公司的资料的电子版。 使用Solaris联机帮助的方法: a. 使用Reference Manual Page 在命令行上使用man命令: 如:$ man ls b. 使用Answer Book 在命令行上使用answerbook命令 如:$ answerbook
2. Man Page的组织 Unix的man page是按照节(section)来组织的.当我们使用man ls的时候,会看到ls(1), 这个括号中的1就表示ls的man page位于section 1。 section通常是由一个主section名和一个可选的次section名组成.主section名通常是 一个数字,次section名通常是一个或多个字母组成. Solaris中各 section 所对应的内容: 1: User Commands and Utilities 2: System Calls 3: C Library Functions 4: File formats 5: Headers,tables and macros 6: Games and demos 7: Device and Network Interfaces 8: Maintance and Accounting commands 9: Device driver interfaces
3.Man Page的存放位置 a.系统本身的 man page存放在/usr/share/man/man*目录中, /usr/man 是 /usr/share/man的一个软链接. 注:在安装操作系统时,man page是可选安装。如果未安装,可将其它机器上的 /usr/share/man目录 mount 到本机上。或使用安装光盘将相应的package装上。