difference between SunOS Release and Solaris Release


 
Thread Tools Search this Thread
Top Forums UNIX for Dummies Questions & Answers difference between SunOS Release and Solaris Release
# 1  
Old 02-28-2003
difference between SunOS Release and Solaris Release

Whats the difference between Solaris Relase and SunOS Release??
# 2  
Old 02-28-2003
In the begining....
Quote:
The two major types of UNIX are
BSD (Berkeley Software Distribution)

System V

The locations of commands and the options supported by certain commands are different between these two types of UNIX.


BSD UNIX was developed by the Computer Systems Research Group at the University of California at Berkeley. In the early 1980s, the University of California acquired the source code to UNIX from AT&T Bell Labs and significantly modified it to produce BSD UNIX.

Although the University of California has stopped distributing BSD UNIX, current versions of it are available from many sources. The most common versions of BSD are OpenBSD, NetBSD, and FreeBSD. Some older machines from Sun Microsystems run a modified version of BSD called SunOS.

System V (sometimes abbreviated as SysV) is the latest version of UNIX released by AT&T Bell Labs. It is based on the original version of UNIX developed in the early 1970s. System V UNIX is the standard for commercial versions of UNIX. Both Solaris (the newest version of SunOS) and HP-UX are based on System V UNIX.



SunOS is the name of the UNIX operating system developed by Sun Microsystems. SunOS was originally based on BSD UNIX but has since changed to be based on System V UNIX. Although Sun Microsystems changed the marketing name of the new version to Solaris, both versions produce the output SunOS when uname is run.

To use the correct versions of commands, shell scripts that have to run on both Solaris and the old SunOS must be able to detect the difference between these two versions.

To determine whether a system is running Solaris or SunOS, you need to determine the version of the operating system. SunOS versions 5 and higher are Solaris (System V-based); SunOS versions 4 and lower are SunOS (BSD-based).

To determine the version of the operating system, use the -r option of uname:

$ uname -r
5.5.1
This indicates that the version of the operating system is 5.5.1. If you want to add the operating system's name to this output, use the -r and the -s options:

$ uname -rs
SunOS 5.5.1
(Information found at
visi0n.net ) Doing a search on goggle will gain you even more information and reading. Solaris still shows the SunOS but it doesn't mean as much as when we went from SunOS 4.1.x to Solaris. These days it's probably hard to find a 4.1.x system still running.
 
Login or Register to Ask a Question

Previous Thread | Next Thread

4 More Discussions You Might Find Interesting

1. UNIX for Advanced & Expert Users

How do I remove or hide SunOS version/release from remote login prompt?

For any SunOS 5.XX release, it appears prior to the "login:" prompt (as if a "uname" command is run). Would anyone know where that initial display of SunOS release comes from upon a remote login and how I can stop if from displaying? Thank you (4 Replies)
Discussion started by: ssid61
4 Replies

2. Solaris

SunOS release 5.3

Hi all, I work on a Sun SPARC station model number 47 with SunOS release 5.3 I modified vfstab file, and I probably done mistake by filling it and now sun doesn't boot. See picture attached. I done a copy of the original file but as I'm not able to boot the sun, I can not replace the file.... (2 Replies)
Discussion started by: Damien77
2 Replies

3. HP-UX

Functionality difference between HP-UX Release 10.20 and 11.00

Hi All, What is the difference with respect to functionality point of view, between HP-UX Release 10.20 and HP-UX Release 11.00? Does the if condition statement in the shell script behave differently in these two releases? (3 Replies)
Discussion started by: puspendu
3 Replies

4. UNIX for Dummies Questions & Answers

What is the difference : SunOS & Solaris Version.

Sorry I think someone already pointed out this but I couldn't find it. Please tell me what is the difference between SunOS Version and Solaris Version. What is the purpose of maintaining these two things ? Thanks (2 Replies)
Discussion started by: champion
2 Replies
Login or Register to Ask a Question