1833851 Members
2326 Online
110063 Solutions
New Discussion

hversion

 
Mark H Smith
Advisor

hversion

i need to find the correct Hversion (Hardware version number in hex) on a Visualize B180L box. (A4323A),
and a command which could find the hversion from hp boxes

having read elsewhere that the hversion may be 0x504 and the model string may be 9000/778/B180L.

I have also tried the following shell command

echo "*(mpproc_info+1E8)%10=X" | adb /hp-ux /dev/kmem

which cannot find /hp-ux for some reason
, but hopefully i am on right track with this adb command

Any assistance would be greatly appreciated.
4 REPLIES 4
Scott Van Kalken
Esteemed Contributor

Re: hversion

if you have the online diags installed (these are usually on the support CD's.

You can use CSTM to give you this information.

# cstm
cstm> map
cstm> select device 1
cstm> info
cstm> infolog


check the output from a map.

on newer systems device 1 is "system", but older ones device 1 is the primary bus.

System Information for (mysystem)
HPUX Model Number......: N4000
HPUX Model String......: 9000/800/N4000-44
Original Product Number: A3639A
Current Product Number.: (Undefined)
System Serial Number...: not telling
Hversion...............: 0x5cc0
Sversion...............: 0x491
Software Capabilities..: 0x100000f0


hope this helps

Scott.
Bill Hassell
Honored Contributor

Re: hversion

As a note about /hp-ux, the command:

echo "*(mpproc_info+1E8)%10=X" | adb /hp-ux /dev/kmem

only works on version 9.xx and earlier which has been obsolete for several years. The /hp-ux file is now called /stand/vmunix in 10.01 and higher. As mentioned, the online diagnostics are the easiest way to track down detailed information. They are found on your SupportPlus CDROM.


Bill Hassell, sysadmin
Sanjay_6
Honored Contributor

Re: hversion

hi Mark,

Try /stand/vmunix with the adb command if you are using version 10.x or above.

Hope this helps.

Regds
Sanjay_6
Honored Contributor

Re: hversion