Difference between revisions of "Solaris"

From Got Opinion Wiki
Jump to navigation Jump to search
m (Created page with "Welcome to my Solaris notes == Components of Sun OS == Three components of Sun OS * Kernel - the core of Sun OS and manages all physical resources of the computer * Shell - a c...")
 
m
Line 1: Line 1:
Welcome to my Solaris notes
Welcome to my Solaris 10 notes


== Components of Sun OS ==
== Components of Sun OS ==
Line 17: Line 17:
* Bash shell - GNU project Bourne Again SHell is bourne compatible shell that contains handy features from Korn and C shell.
* Bash shell - GNU project Bourne Again SHell is bourne compatible shell that contains handy features from Korn and C shell.
* Z shell - resembles Korn shell plus enhancements
* Z shell - resembles Korn shell plus enhancements
* TC shell - C compatible shell plus enhancements  
* TC shell - C compatible shell plus enhancements
 
== Logging into Sun OS ==
 
All users must log into system
 
=== Desktop login ===
 
Use direct login or options
 
password requirements 6-8 characters, contain at least two alpha characters and one numerical or special character. cannot be same as user login name, different than last password by at least three characters, reverse of user login name
password requirements don't apply to root user or regular user password set by root user
 
 
== Desktop Environment ==
 
Solaris 10 includes Common Desktop Environment (CDE) and Java Desktop System (JDS) desktop environments.
 
== Command Line ==
 
Run command line in a terminal window
 
Use Unix system commands to instruct the computing system to perform specific tasks
 
Commands can be executed with or without options or arguments
 
Unix command syntax is the order and structure of command line components.
 
Unix command line syntax = [command] [options] [arguments]
 
* command determines what system will execute
* option determines how command will run and always begins with -
* argument determines what command will affect
 
 
 
 
 


<center>[[Computing|To Computing Area]]</center>
<center>[[Computing|To Computing Area]]</center>

Revision as of 08:20, 22 April 2011

Welcome to my Solaris 10 notes

Components of Sun OS

Three components of Sun OS

  • Kernel - the core of Sun OS and manages all physical resources of the computer
  • Shell - a command interpreter and interfaces between user and kernel
  • Directory Hierarchy

Default shells

Sun OS default primary shells:

  • Bourne shell - original unix system shell and default for root user. regular user prompt is $ and root is #
  • C shell - command line history, aliasing, and job control. default regular user is hostname% and root is hostname#
  • Korn Shell - superset of Bourne shell plus C shell like features and enhancements. command line history, aliasing, job control, and command line editing default regular prompt is $ and root is #

Sun OS contains three alternative shells:

  • Bash shell - GNU project Bourne Again SHell is bourne compatible shell that contains handy features from Korn and C shell.
  • Z shell - resembles Korn shell plus enhancements
  • TC shell - C compatible shell plus enhancements

Logging into Sun OS

All users must log into system

Desktop login

Use direct login or options

password requirements 6-8 characters, contain at least two alpha characters and one numerical or special character. cannot be same as user login name, different than last password by at least three characters, reverse of user login name password requirements don't apply to root user or regular user password set by root user


Desktop Environment

Solaris 10 includes Common Desktop Environment (CDE) and Java Desktop System (JDS) desktop environments.

Command Line

Run command line in a terminal window

Use Unix system commands to instruct the computing system to perform specific tasks

Commands can be executed with or without options or arguments

Unix command syntax is the order and structure of command line components.

Unix command line syntax = [command] [options] [arguments]

  • command determines what system will execute
  • option determines how command will run and always begins with -
  • argument determines what command will affect




To Computing Area