Operating System - HP-UX
1753852 Members
7685 Online
108808 Solutions
New Discussion юеВ

How do I find out if I have 32 bit or 64 bit OS installed?

 
SOLVED
Go to solution
Matt Shaffer_1
Regular Advisor

How do I find out if I have 32 bit or 64 bit OS installed?

I am running HPUX 11.11 but I don't know if it's 32 or 64 bit? How do I find this out? Thank you.
5 REPLIES 5
James R. Ferguson
Acclaimed Contributor
Solution

Re: How do I find out if I have 32 bit or 64 bit OS installed?

Hi Matt:

# getconf KERNEL_BITS

...shows the kernel "bitness" you are running.

# getconf HW_CPU_SUPP_BITS

...returns the "bitness" you *can* run.

Regards!

...JRF...
K.C. Chan
Trusted Contributor

Re: How do I find out if I have 32 bit or 64 bit OS installed?

uname -m
Reputation of a thousand years can be determined by the conduct of an hour
inventsekar_1
Respected Contributor

Re: How do I find out if I have 32 bit or 64 bit OS installed?

KCChan,
-m Display the machine hardware and model names.

#uname -m
9000/800

"getconf KERNEL_BITS" is the solution

Be Tomorrow, Today.
Matt Shaffer_1
Regular Advisor

Re: How do I find out if I have 32 bit or 64 bit OS installed?

Thank you
Matt Shaffer_1
Regular Advisor

Re: How do I find out if I have 32 bit or 64 bit OS installed?

getconf KERNEL_BITS is what I needed.