What does mean below output from Solaris , How to find out the version and bit of OS from this output?
uname -a
SunOS tsap01 5.10 Generic_147441-27 i86pc i386 i86pc 2 Answers
For SunOS 5.7 and later, drop the "5." to get the Solaris version number, so "5.10" is Solaris 10. To see which update release of Solaris 10, you need to look in /etc/release.
To see if it's running 32-bit or 64-bit you need to run isainfo -kv as uname won't tell you.
The version is SunOS 5.10 and its 32 bit (i386)
1