0

My server is HP Unix B.11.31 and I want to check whether it is 9000 type or Integrity type.

Rui F Ribeiro
  • 56,709
  • 26
  • 150
  • 232

1 Answers1

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