Since the Trusted Solaris 7 operating environment is based on the Solaris 7 operating environment, you should have access to the complete Solaris 7 documentation set in addition to the Trusted Solaris 7 documentation. The Trusted Solaris documentation set focuses on the those aspects of the environment that are different from Solaris 7. The manuals are available in both printed and online versions.
The Trusted Solaris documentation set consists of:
Trusted Solaris 7 Release Notes (805-8050-10) provides help for getting started with and using the Trusted Solaris 7 version of the software. It lists known problems and describes workarounds (primary audience: administrators, secondary audience: developers).
Trusted Solaris Installation and Configuration (805-8056-10) describes how to install the Trusted Solaris operating environment at networked or non-networked sites (primary audience: administrators, secondary audience: developers).
Trusted Solaris 7 Installation and Configuration on the Sun Enterprise 10000 (805-8110-10) describes how to install the Trusted Solaris operating environment on the E10000 server (primary audience: administrators, secondary audience: developers).
Trusted Solaris User's Guide (805-8053-10) describes the basic features of the Trusted Solaris environment from the end user's point of view. Although it is aimed at end users, it explains basic concepts that are of importance to administrators and application developers as well. It provides a glossary of terms covering the entire product (primary audience: end users, administrators, secondary audience: developers).
Trusted Solaris Administration Overview (805-8054-10) explains the concepts of administration in the Trusted Solaris operating environment and provides an overview of administrative tools and commands (primary audience: administrators, secondary audience: developers).
Trusted Solaris Administrator's Procedures (805-8055-10) provides detailed information for performing specific administration tasks and some detailed tables in the appendices useful for troubleshooting (primary audience: administrators, secondary audience: developers).
Trusted Solaris Audit Administration (805-8057-10) describes the auditing system (primary audience: administrators, secondary audience: developers).
Trusted Solaris Label Administration (805-8058-10) provides information on specifying label components in the label encodings file (primary audience: administrators).
Trusted Solaris Developer's Guide (805-8060-10) describes how to develop applications for the Trusted Solaris environment (primary audience: developers, secondary audience: administrators).
Compartmented Mode Workstation Labeling: Encodings Format (805-8062-10) describes the syntax used in the label encodings file for enforcing the various rules concerning well-formed labels for a system. This is a third-party document, written by the MITRE Corporation specifically for the U.S. government. It complements the Trusted Solaris Label Administration (primary audience: administrators, secondary audience: developers).
Trusted Solaris 7 Transition Guide (805-8059-10) provides an overview of the differences between earlier versions of the Trusted Solaris, Solaris 7, and Trusted Solaris 7 operating environments (primary audience: administrators, developers, secondary audience: end users).
Trusted Solaris 7 Reference Manual (805-8052-10) provides a printed version of all Trusted Solaris man pages in four volumes (primary audience: all). Trusted Solaris 7 Reference Manual (805-8065-10) is the online version; it is an AnswerBook collection with nine sections.
The Trusted Solaris 7 Roadmap (805-8051) --this document.
Four printed Trusted Solaris 7 documents are shipped with the software: Trusted Solaris 7 Release Notes, Trusted Solaris Installation and Configuration, Trusted Solaris 7 Installation and Configuration on the Sun Enterprise 10000 (SPARC only), and this guide, Trusted Solaris 7 Roadmap. The complete printed documentation set (Part Number TS799-007-99D9) can be ordered separately. Since Trusted Solaris is based on the Solaris operating environment, Trusted Solaris customers who rely on Trusted Solaris printed manuals are expected to have access to the Solaris printed manuals as well. The Trusted Solaris and Solaris document sets can be ordered from http://www1.fatbrain.com/documentation/sun.
The printed documentation is available for the three locales, as described below:
Trusted Solaris 7 Documentation Set (C locale) --Includes the complete documentation set in English.
Trusted Solaris 7 Documentation Set (Japanese locale) --Includes the complete documentation set in Japanese, except for the reference manual set (printed man pages). Some man pages in Japanese are available for viewing with the man command.
Trusted Solaris 7 Documentation Set (Korean locale) --Includes six core manuals for installing and understanding the Trusted Solaris 7 operating environment, translated into Korean.
All Trusted Solaris manuals described in the Trusted Solaris 7 Release Notes are available online from the Trusted Solaris 7 AnswerBook CD-ROM (704-8121-10) and at the Sun website: http://www.sun.com/docs and can be printed from these sources if desired.
In addition to the online documentation, online help is provided in the Trusted Solaris operating environment through the Front Panel help icon, help menus, and help buttons.
An extensive library of man pages is available for the Trusted Solaris 7 operating environment. These are available in the Trusted Solaris 7 Reference Manual mentioned above and from the command line using the man(1) command.
If a man page is in both the base Solaris (or CDE) and the Trusted Solaris reference manuals, refer to the man page in the Trusted Solaris 7 Reference Manual because it includes the differences unique to the Trusted Solaris operating environment.
For an overview of the system and a complete listing of commands available in the Trusted Solaris 7 operating environment, see the following introductory man pages for each section of the reference manual:
The man pages for the Trusted Solaris environment reside in three different directories. For the man command to find all the Trusted Solaris man pages, the MANPATH should display the three paths in the following list, along with any other paths where man pages are installed at your site.
/usr/man
/usr/openwin/man
/usr/dt/man
The MANPATH variable can be set individually by users in their shell initialization files or globally by administrators in site-wide shell initialization files in /etc/skel (or alternate skeleton directory) to be copied into the home directories for all users. To set the MANPATH variable, enter:
trusted% setenv MANPATH="/usr/dt/man:/usr/openwin/man:/usr/man:$MANPATH" |
To check a system's current MANPATH setting, enter:
echo $MANPATH |
This should display the three paths mentioned above and any other paths to man pages at your site.
To check whether different versions of a topic exist in different sections, enter man with the -l option:
trusted% man -l topic |
To specify man pages by section, use the man with the -s option:
trusted % man -s sectionnumber topic |
The following example shows the results of using the -l option to find all the Intro man pages.
trusted% man -l Intro Intro (1) -M /usr/man Intro (1m) -M /usr/man Intro (2) -M /usr/man Intro (3) -M /usr/man Intro (9f) -M /usr/man Intro (9s) -M /usr/man Intro (9e) -M /usr/man Intro (9) -M /usr/man Intro (4) -M /usr/man Intro (5) -M /usr/man Intro (7) -M /usr/man Intro (6) -M /usr/man |
By default, if you enter man topic in the Trusted Solaris environment without specifying the section and there are multiple sections containing man pages with the same name, the man page for the lowest numbered section displays, for example:
trusted% man Intro
User Commands Intro(1)
NAME
Intro, intro - Introduction to commands and application pro-
grams
DESCRIPTION
...
|
The following example illustrates specifying a section number:
trusted% man -s7 intro
Device and Network Interfaces Intro(7)
NAME
Intro, intro - Introduction to special files
DESCRIPTION
...
|