Operating System - HP-UX
1833666 Members
3550 Online
110062 Solutions
New Discussion

Determine architecture 32 or 64 bit for L2000

 
SOLVED
Go to solution
Laurence Beard
Occasional Contributor

Determine architecture 32 or 64 bit for L2000

What is the best way to determine the architecture of the system you are running at the software and hardware level ?

thanks in advance
5 REPLIES 5
Denver Osborn
Honored Contributor
Solution

Re: Determine architecture 32 or 64 bit for L2000

An L2000 is a 64bit only box...

You can use getconf to confirm the hw and sw.

getconf KERNEL_BITS
getconf HW_CPU_SUPP_BITS


Hope this helps,
-denver
Patrick Wallek
Honored Contributor

Re: Determine architecture 32 or 64 bit for L2000

You can also check the file /etc/.supported_bits and see what most of the different machines support.
Ravi_8
Honored Contributor

Re: Determine architecture 32 or 64 bit for L2000

Hi

L2000 is a 64 bit machine,

#getconf KERNEL_BITS < shows OS >
#getconf HW_CPU_SUPP_BITS
never give up
T G Manikandan
Honored Contributor

Re: Determine architecture 32 or 64 bit for L2000

you can use

getconf KERNEL_BITS
getconf HW_32_64_CAPABLE
getconf HW_CPU_SUPP_BITS
Laurence Beard
Occasional Contributor

Re: Determine architecture 32 or 64 bit for L2000

Thanks all.