Which version and Bit of Solaris OS


 
Thread Tools Search this Thread
Operating Systems Solaris Which version and Bit of Solaris OS
# 1  
Old 11-28-2007
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!
# 2  
Old 11-28-2007
Quote:
Originally Posted by panchpan
Solaris 10 11/06 s10x_u3wos_10 X86
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.
# 3  
Old 11-28-2007
$ isalist
amd64 pentium_pro+mmx pentium_pro pentium+mmx pentium i486 i386 i86
$

So what bit am I running on ? and How does it matter?
# 4  
Old 11-28-2007
Java

Quote:
Originally Posted by panchpan
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
Solaris 10 Means the OS is Solaris 10 (aka SunOS 5.10)
11/06 Means that this is the specific release of Solaris 10 made in November 2006 (different releases have different bug fixes and features - it's sort of like Windows Service packs... sort of)
s10x_u3wos_10 - Sorry, no idea
X86 This version is compiled for X86 processors (ie the same sort of hardware you can run windows on, as opposed to something like a Sparc architecture).
# 5  
Old 11-28-2007
On Solaris you can find out the supported programming model(s) using isainfo.

Code:
isainfo -v

There are a number of other options including the -b option prints the number of bits in the address space of the native applications environment.

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!
# 6  
Old 11-28-2007
Code:
isainfo -kv

will show you the actual kernel modules loaded. Just -v is a bit vague.
# 7  
Old 11-28-2007
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.
Login or Register to Ask a Question

Previous Thread | Next Thread

10 More Discussions You Might Find Interesting

1. Windows & DOS: Issues & Discussions

Which version of Windows Vista to install with a product key? 32-bit or 64-bit?

Hello everyone. I bought a dell laptop (XPS M1330) online which came without a hard drive. There is a Windows Vista Ultimate OEMAct sticker with product key at the bottom case. I checked dell website (here) for this model and it says this model supports both 32 and 64-bit version of Windows... (4 Replies)
Discussion started by: milhan
4 Replies

2. Shell Programming and Scripting

suitable perl version for windows 2008 64 bit

Hi , While executing perl scripts , sometimes cpu consumption is going to 100% and perl script is asking to abort. In perl script , iam having some powershell commnands. out of 10 times , 9 times script runs fine and 1 time its throwing the above error. Iam using windows 2008 64 bit... (2 Replies)
Discussion started by: penchal_boddu
2 Replies

3. Linux

Request: Compile Earlier Version of XTIDE and upload XTTPD binary on 64 bit Linux

Can someone try to compile this older version of xtide (attached) on 64-bit Intel/Linux and upload the xttpd binary? I have a friend who needs an older version up and running because the newer version does not support his required harmonic files. Thanks! (7 Replies)
Discussion started by: Neo
7 Replies

4. Solaris

Solaris os 32 bit or 64 bit

:confused: how to find out wether my os is 32 bit or 64 bit. I am using Solaris 5.6. also i want to know the difference between 32 bit and 64bit os. any help will be much appreciated as i am in urgent need of this information (6 Replies)
Discussion started by: asalman.qazi
6 Replies

5. Shell Programming and Scripting

Check for the bit version of OS

Hi , Is there a command that i can use to check the bit version of the OS. I have a script that i need to run on all the unix flavors so how do i check for the condition say something like this if( 32 bit) { execute this } else { execute this (4 Replies)
Discussion started by: tcsprak
4 Replies

6. Solaris

Porting C++ 32-bit code on 64-bit Solaris

Hi, I am trying to convert 32-bit code to 64-bit. I have defined function int main() { int* l; size_t len1; fun(len1); return 0; } void fun(int* ptr) { cout<<"\nsizeof(ptr)"<<sizeof(ptr); } However while compiling getting error as : Error: Formal argument ptr... (2 Replies)
Discussion started by: amit_27
2 Replies

7. Solaris

Solaris 64-bit to 32-bit

I had previous implemented the following in my menu.lst to be able to get to 32-bit operations. # title Solaris 10 32-bit root (hd0,0,a) kernel /platform/i86pc/multiboot kernel/unix module /platform/i86pc/boot_archive </code> Now, it is not working as I get the following error : ... (0 Replies)
Discussion started by: praveenr
0 Replies

8. AIX

porting an application on 64-bit AIX version 5

Hi all, I am facing problem in porting to 64 bit AIX especially with compiling options to compile and run under 64 bit kernel.Can any one put some light on the issue thanks in advance vishal (14 Replies)
Discussion started by: vishalzone2002
14 Replies

9. Solaris

32 / 64 bit OS in Solaris

Dear All, This is Viswanadhan, new to Sun Solaris domain. In Sun Solaris ( SPARC ) has 32 bit and 64 bit OS. While insallation of OS there no specific option for 32 / 64 bit OS .On which basis OS installs for 32 / 64 bit OS ? Regards, Viswanadhan. (1 Reply)
Discussion started by: viswanadhan
1 Replies

10. Solaris

64 bit solaris 9

How can I tell if im running a 64 bit version of solaris? (1 Reply)
Discussion started by: csaunders
1 Replies
Login or Register to Ask a Question