![]() |
|
|
|
|
|||||||
| Forums | Portal | Register | Forum Rules | FAQ | Contribute | Members List | Arcade | Search | Today's Posts | Mark Forums Read |
| SUN Solaris The Solaris Operating System, usually known simply as Solaris, is a free Unix-based operating system introduced by Sun Microsystems . |
|
|
||||
| Thread | Thread Starter | Forum | Replies | Last Post |
| Command to know Solaris version | amitrajvarma | SUN Solaris | 4 | 05-14-2008 11:12 PM |
| How to check version of Solaris? | am_yadav | SUN Solaris | 5 | 02-06-2008 02:43 AM |
| Solaris version formating | mansoorulhaq | SUN Solaris | 2 | 12-12-2007 01:25 AM |
| solaris oracle version | Farbegas | SUN Solaris | 2 | 10-03-2007 11:07 PM |
| Version on Solaris Server | amitkhiare | SUN Solaris | 3 | 02-03-2006 09:47 AM |
|
|
Submit Tools | LinkBack | Thread Tools | Display Modes |
|
|||
|
Which version and Bit of Solaris OS
Hello
1) How can I find what bit of OS I am running on? 16 bit, 64 bit? 2) What is the difference in having different bits? 3) Below is the output of /etc/release/ what are all these components meaning? $ more /etc/release Solaris 10 11/06 s10x_u3wos_10 X86 $ Thank you! |
| Forum Sponsor | ||
|
|
|
|||
|
Run "isalist" and post the output.
Unless it says something like "sparcv9" or "amd64" you are on 32 bit. If you are running a UNIX like system, unless you are on an ancient PDP/11 then you are likely to be 32 bit at the very least. |
|
|||
|
On Solaris you can find out the supported programming model(s) using isainfo.
Code:
isainfo -v On current UNIX systems the programing model is typically either IPL32 or LP64. In the mid-1990s, the Aspen WG agreed on the LP64 programming model and produced a paper which will help you understand the various programming models. 64-BIT PROGRAMMING MODELS For further information on UNIX programming models Google is your friend! |
|
|||
|
oh, and to answer your number 2), get more details here:
Bit - Wikipedia, the free encyclopedia Integer (computer science) - Wikipedia, the free encyclopedia basically, the bit size determines how long a "word" is to the CPU. 16bit word is 2 bytes, 32bit word is 4 bytes, 64bit word is 8 bytes, and so on. from the point of view of a 32bit processor, a doubleword is 64 bits. the bigger a native word, the more complex a CPUs calculations can be because it can address bigger numbers with fewer operations. |
|||
| Google The UNIX and Linux Forums |