Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save kurtis318/c3774ac3977e03fd8faee95195d143e8 to your computer and use it in GitHub Desktop.
Save kurtis318/c3774ac3977e03fd8faee95195d143e8 to your computer and use it in GitHub Desktop.
Find firmware version on Power8 RHEL server

Issue:

I have a Power8 server at work that I need to find out the current firmware version installed. The ipmitool does not work for some unknow reason.

Solution:

There are two solutions here:

The last few lines of the following command has the firmware level listed:

[root@hdpss kurtis]# lsvpd | tail -n 6
*FC 
*DS System Firmware
*AX firmware
*ML FW860.42 FW860.42 FW860.42
*CL OPAL skiboot-5.4.8-d2bbccd
*MI SV860_138 SV860_138 SV860_138

Here is a more simpler command:

[root@hdpss kurtis]# lsmcode
Version of System Firmware is FW860.42 (SV860_138) (t) FW860.42 (SV860_138) (p) FW860.42 (SV860_138) (b)


Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment