This iron is displayed on the desktop of a laptop computer,which is running Oracle Solaris 11. Which two statements describe the Information conveyed by this Icon?
Correct Answer: B,C
B: The Network Status notification icon is only displayed on the desktop if you are using NWAM to automatically configure your network. C: All online (Wireless) Indicates all manually enabled connections in the enabled network profile are online and that the required number of connections in the enabled profile group (if such a group exists) are online. The required number is the same as those described for the All online (Wired) status. Note that at least one online connection is wireless.
Question 167
What is the result of executing the following command? svcs -d svc:/network/ssh:default
Correct Answer: B
Explanation/Reference: Explanation: The svcs command displays information about service instances as recorded in the service configuration repository. -d Lists the services or service instances upon which the given service instances depend.
Question 168
You wish to edit your crontab file that is located in /var/spool/cron/crontab. What command must you enter to edit this file?
Correct Answer: A
Explanation/Reference: Explanation: The main tool for setting up cron jobs is the crontab command, though this is not available on every Unix variant. Typically under Solaris or Linux one would create a new crontab or edit an existing one, using the command; crontab -e Use the ls -l command to verify the contents of the/var/spool/cron/crontabs file.
Question 169
You are executing this command in the default shell: sleep 5000 & The system displays a number. This value is______.
Correct Answer: C
If a command is terminated by the control operator '&', the shell executes the command asynchronously in a subshell. This is known as executing the command in the background. The shell does not wait for the command to finish, and the return status is 0 (true).
Question 170
Which four can the SMF notification framework be configured to monitor and report?
Correct Answer: A,E,F,G
Note 1: State Transition Sets are defined as: to<state> Set of all transitions that have <state> as the final state of the transition. form-<state> Set of all transitions that have <state> as the initial state of the transition. <state> Set of all transitions that have <state> as the initial state of the transitional. Set of all transitions. (A) Valid values of state are maintenance, offline (G), disabled (E), online and degraded. An example of a transitions set definition: maintenance, from-online, to-degraded. F: In this context, events is a comma separated list of SMF state transition sets or a comma separated list of FMA (Fault Management Architecture) event classes. events cannot have a mix of SMF state transition sets and FMA event classes. For convenience, the tags problem{diagnosed, updated, repaired, resolved} describe the lifecycle of a problem diagnosed by the FMA subsystem - from initial diagnosis to interim updates and finally problem closure. Note 2: SMF allows notification by using SNMP or SMTP of state transitions. It publishes Information Events for state transitions which are consumed by notification daemons like snmp-notify(1M) and smtp-notify(1M). SMF state transitions of disabled services do not generate notifications unless the final state for the transition is disabled and there exist notification parameters for that transition. Notification is not be generated for transitions that have the same initial and final state. Reference: man svccfg setnotify