Kbase P39414: How to determine the MUP level installed on an IBM AIX system.
Autor |
  Progress Software Corporation - Progress |
Acesso |
  Público |
Publicação |
  10/16/2008 |
|
Status: Verified
GOAL:
How to determine what maintenance level on an IBM AIX system.
GOAL:
How to determine the MUP level installed on an IBM AIX system.
GOAL:
How to determine the patch level used on IBM AIX.
GOAL:
How to determine the PTF used on IBM AIX.
GOAL:
How to determine the packages installed on AIX
FACT(s) (Environment):
IBM AIX
FIX:
To determine the Maintenance Level applied to an IBM AIX system use the 'instfix -i' command to query the system. The 'instfix -i' command lists the AIX system fixes that have been installed on an AIX system. To reduce the amount of output displayed, pipe the output to 'grep' and display only the results that include the string, "AIX_ML". This grep filter will provide only the list of AIX maintenance levels that have been applied to your system.
instfix -i | grep AIX_ML
EXAMPLE #1: AIX 4.3.3 with MUP 2:
All filesets for 4.3.1.0_AIX_ML were found.
All filesets for 4.3.2.0_AIX_ML were found.
All filesets for AIX43ML were found.
All filesets for 4.3.1.0_AIX_ML were found.
All filesets for 4.3.2.0_AIX_ML were found.
All filesets for 4.3.3.0_AIX_ML were found.
All filesets for 4330-02_AIX_ML were found.
Not all filesets for 4320-02_AIX_ML were found.
Not all filesets for 4330-03_AIX_ML were found.
Not all filesets for 4330-04_AIX_ML were found.
Not all filesets for 4330-05_AIX_ML were found.
All filesets for 4330-01_AIX_ML were found.
Not all filesets for 4330-06_AIX_ML were found.
All filesets for 4330-02_AIX_.ML were found. <-- MUP Level 2
EXAMPLE #2: IBM AIX 5.1 with MUP 3
All filesets for 5.1.0.0_AIX_ML were found.
All filesets for 5100-01_AIX_ML were found.
All filesets for 5100-02_AIX_ML were found.
All filesets for 5100-03_AIX_ML were found. <-- MUP Level 3
Additional, To find out the version of IBM AIX and patch level that's currently running on your system use the 'lslpp' command:
lslpp -l | grep bos.mp
EXAMPLE #1: IBM AIX 4.3.3
bos.mp 4.3.3.51 COMMITTED Base Operating System
bos.mp 4.3.3.0 COMMITTED Base Operating System
EXAMPLE 2: IBM AIX 5.1
bos.mp 5.1.0.36 COMMITTED Base Operating System
bos.mp64 5.1.0.37 COMMITTED Base Operating System 64-bit
bos.mp 5.1.0.36 COMMITTED Base Operating System
bos.mp64 5.1.0.37 COMMITTED Base Operating System 64-bit