My server is HP Unix B.11.31 and I want to check whether it is 9000 type or Integrity type.
Asked
Active
Viewed 91 times
0
1 Answers
1
model can be found using
model
ia64 hp Superdome2 16s
XYZ/9000/rx3440 (a)
more details information can be found usinf machinfo
(starting 11iV3).
other properties are foung using getconf (see man getconf
for details)
getconf LONG_BIT
32
here I am on a 32 bit system.- as pointed out by Darkheart, actual configuration is given by
getconf KERNEL_BITS
which return 64.
( (a) can't remember exact return for 9000 system )

Archemar
- 31,554
-
Are you sure that you are on a 32bit system?
getconf -v XBS5_LP64_OFF64 LONG_BIT
- that just tells you how many bits a 'long' type is for that specification (defaults to XBS5_ILP32_OFF32
) ... I think you want KERNEL_BITS or 'HW_CPU_SUPP_BITS' – Sep 23 '15 at 02:43
machinfo
or more conciselymodel
? – Archemar Sep 22 '15 at 14:26model
shows the type... Thanks – Malaiselvan Sep 22 '15 at 14:36