command to know the bit information of OS


 
Thread Tools Search this Thread
Top Forums UNIX for Dummies Questions & Answers command to know the bit information of OS
# 1  
Old 10-01-2008
command to know the bit information of OS

How to know the bit information of different OS, since "isainfo -kv" shows the bit information of solaris.

It would be helpful, if there is some comand to know the above.

Thanks,
Alok
# 2  
Old 10-01-2008
32 vs 64 bit do you mean?
Here are outputs of a 11.23 itanium and a 11.00 K class
For HP-UX: (11 & above)
Code:
od:/home/vbe $ getconf KERNEL_BITS                                                          
64
co:/home/vbe $ getconf KERNEL_BITS
32

# 3  
Old 10-01-2008
It doesn't map exactly across systems the way you would think.
Try the UNIX rosetta stone.
Try:
Rosetta Stone for Unix

Do a find on this page for "isainfo" As you scroll left<->right you will see similar commands for getting architecture information for a lot of different unixes.
# 4  
Old 10-01-2008
getconf is a better choice if that is what the OP wants.
# 5  
Old 10-01-2008
thanks
# 6  
Old 10-02-2008
And for aix:
Code:
roe: /home/vbe> bootinfo -K
64

 
Login or Register to Ask a Question

Previous Thread | Next Thread

8 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

How to handle 64 bit arithmetic operation at 32 bit compiled perl interpreter?H

Hi, Here is the issue. From the program snippet I have Base: 0x1800000000, Size: 0x3FFE7FFFFFFFF which are of 40 and 56 bits. SO I used use bignum to do the math but summing them up I always failed having correct result. perl interpreter info, perl, v5.8.8 built for... (0 Replies)
Discussion started by: rrd1986
0 Replies

3. Shell Programming and Scripting

Command to find 32/64 bit in Linux

Hi, Can somebody tell me which command will help me find whether the OS is 32 bit or 64 bit. OS is LInux Thanks (3 Replies)
Discussion started by: aish11
3 Replies

4. HP-UX

[Solved] processor type and bit information

Hi, I'm trying to download a compatible Oracle Client software for a HP-UX machine. I'd like to know if ... 1) HP-UX is 32 bit or 64 bit? 2) Processor type - Itanium or regular? when I execute uname -a I get HP-UX B.11.11 U 9000/800 728684161 unlimited-user license Based on the... (7 Replies)
Discussion started by: luft
7 Replies

5. Programming

copying or concatinating string from 1st bit, leaving 0th bit

Hello, If i have 2 strings str1 and str2, i would like to copy/concatenate str2 to str1, from 1st bit leaving the 0th bit. How do i do it? (2 Replies)
Discussion started by: jazz
2 Replies

6. UNIX for Dummies Questions & Answers

Command to find 32/64 bit in Linux

Hi, Can somebody tell me which command will help me find whether the OS is 32 bit or 64 bit. Regards, Giridhara Babu Tadikonda. (3 Replies)
Discussion started by: giribt
3 Replies

7. AIX

AIX 5.3 , gensyms command, translate 32 bit addr to 64 bit addr

I am trying to map the information from the gensyms command, Its gives information about the various symbols info like symbol type, addr offset, and the main libraries addr starting point. My problem is , how do I map this 32 bit addr to a 64 bit addr, I am trying to extract Segment # information... (0 Replies)
Discussion started by: mrmeswani
0 Replies

8. UNIX for Dummies Questions & Answers

command to check the bit

i am using sunOS 5.8. What is the command to know the OS bit (8,32,64...) while the server is under production and is it possible to change from one bit to another?? replies appreciated raguram R (2 Replies)
Discussion started by: raguramtgr
2 Replies
Login or Register to Ask a Question