1834665 Members
3091 Online
110069 Solutions
New Discussion

Processor Info & OS info

 
SOLVED
Go to solution
Irfan Ahmed_1
Advisor

Processor Info & OS info

Hi All,

I would like to know the procedure to find whether my processor is 64bit or 32 bit.
Also I would like to know, is my OS is 32bit or 64bit.

I have HP-UX 11.00 OS & PA-RISC processor

Regards
-Irfan
5 REPLIES 5
RAC_1
Honored Contributor

Re: Processor Info & OS info

file /stand/vmunix
getconf kernel_bits
sam-system properties
model
xstm/cstm/mstm

Anil
There is no substitute to HARDWORK
A. Clay Stephenson
Acclaimed Contributor
Solution

Re: Processor Info & OS info

Processor:
getconf HW_CPU_SUPP_BITS

OS:
getconf KERNEL_BITS

Man getconf for details.
If it ain't broke, I can fix that.
Sandman!
Honored Contributor

Re: Processor Info & OS info

Whether your OS is 32 or 64 bit run this command...

# getconf KERNEL_BITS

Whether your CPU is 32 ot 64 bit run this command...

# getconf HW_CPU_SUPP_BITS
Rick Garland
Honored Contributor

Re: Processor Info & OS info

The print_manifest command can tell you the OS info. (And much,much more!)

Use the getconf HW_CPU_SUPP_BITS for the hardware
Irfan Ahmed_1
Advisor

Re: Processor Info & OS info

Thanks