1827707 Members
2810 Online
109967 Solutions
New Discussion

64Bit identification.

 
SOLVED
Go to solution
Karl_
Frequent Advisor

64Bit identification.

Hi guys,

Aside from uname -a, how can I check if my HP-UX OS and server processor are 64bit.

Thanks.

Karl
4 REPLIES 4
Con O'Kelly
Honored Contributor
Solution

Re: 64Bit identification.

Hi

Run the following command:
# file /stand/vmunix

If it returns the following then its 64bit:
/stand/vmunix: ELF-64 executable object file - PA-RISC 2.0 (LP64)

Cheers
Con
Con O'Kelly
Honored Contributor

Re: 64Bit identification.

You can also use:
# getconf KERNEL_BITS

Cheers
Con
Shaikh Imran
Honored Contributor

Re: 64Bit identification.

Hi,
From the command-line
=====================
$ getconf KERNEL_BITS

or:
$ file /stand/vmunix
/stand/vmunix: PA-RISC1.1 executable ---> 32-bit
/stand/vmunix: ELF-64 executable object file ---> 64-bit

From SAM
========
1) goto Performance Monitors -> System Properties -> Operating System
2) check OS Kernel Width: value


Regards,

I'll sleep when i am dead.
Karl_
Frequent Advisor

Re: 64Bit identification.

Thanks. :-D