Operating System - HP-UX
1856578 Members
19926 Online
104113 Solutions
New Discussion

Re: PDC Firmware Version on hosts

 
ecorban
Frequent Advisor

PDC Firmware Version on hosts


IS there any other way to find the PDC version
of a host other than reboot the console.

IS the version of firmware stored in some kernel file that can be greped out or viewed.

2 REPLIES 2
A. Clay Stephenson
Acclaimed Contributor

Re: PDC Firmware Version on hosts

If you have STM loaded then you can use xstm or cstm to view this information. You really should have STM loaded on all HP-UX boxes.
If it ain't broke, I can fix that.
Sridhar Bhaskarla
Honored Contributor

Re: PDC Firmware Version on hosts

Hi,

If you have online diagnostics loaded (swlist |grep -i onlinediag), then you can get it from cstm. Below is a simple script that may help you.

/usr/sbin/cstm << EOF > /tmp/pdc$$
map
selclass type processor
info
wait
infolog
quit
Done
EOF

awk '/PDC Firmware Revision/ {print $4}' /tmp/pdc$$|sort|uniq
rm -f /tmp/pdc$$

-Sri
You may be disappointed if you fail, but you are doomed if you don't try