Operating System - OpenVMS
1827827 Members
2102 Online
109969 Solutions
New Discussion

Re: how can i list os version and fix on OpenVMS?

 
nos.
Occasional Contributor

how can i list os version and fix on OpenVMS?

how can i list os version and fix on OpenVMS?
10 REPLIES 10
Tim Killinger
Regular Advisor

Re: how can i list os version and fix on OpenVMS?

the DCL command "show system" will give you the current version.

$show system

What do you mean by "fix"?
Bob Blunt
Respected Contributor

Re: how can i list os version and fix on OpenVMS?

As Tim suggested, $ SHOW SYSTEM will give you the version and a lot more. Depending on what version you're running, you can use an abbreviated form, $ SHOW SYSTEM/NOPROCESS.

To list installed ECOs and software you can use the following commands:

For software installed with the PCSI utility on VAX and Alpha:

$ PROD SHOW PRODUCT
$ PROD SHOW HISTORY

On Alpha with software installed using VMSINSTAL, you can:

$ TYPE SYS$UPDATE:VMSINSTAL.HISTORY

I don't believe that this file exists on VAX-based systems.

bob
Martin Johnson
Honored Contributor

Re: how can i list os version and fix on OpenVMS?

"LICENSE LIST" will show you what products are licensed for use on the system.

HTH
Marty
Alex  Daniels
Frequent Advisor

Re: how can i list os version and fix on OpenVMS?

SYS$UPDATE:VMSINSTAL.HISTORY is available on VAX, but only on newer versions, cant remember exactly which 7.x version it came in, but I do have it on my 7.3 boxes.
Gary Sachs
Advisor

Re: how can i list os version and fix on OpenVMS?

Have you tried F$GETSYI("VERSION")? or the equivalent SYS$GETSYI in a high level language?
Burkart Beat
Frequent Advisor

Re: how can i list os version and fix on OpenVMS?

Hi
You can do a
$ dir/col=1 sys$help:*.REL*

This gives you an view of all installed products on your system. Most of them with a version number.

Regards
Beat
Antoniov.
Honored Contributor

Re: how can i list os version and fix on OpenVMS?

Hello nos,
I'm a new user in this forum.
I believe 'fix' are list of bugs fix as patch.
You can know upgrade and patch (I think are called ECO) reading forum and documantation in this web site.
P.S.
Our VMS comunity is littlest in hp forum.
Please, assign points to answer so we can graw togheter. This is valid for all other members of vms forum.

Thak you from Italy.
Antonio Maria Vigliotti
Manuel Plaza
Regular Advisor

Re: how can i list os version and fix on OpenVMS?

Hi,

In a standalone system you can try:
SHOW SYSTEM/NOPROCESS/FULL
and in a cluster:
SHOW SYSTEM/NOPROCESS/FULL/CLUSTER

Regards,

Manuel
Martin P.J. Zinser
Honored Contributor

Re: how can i list os version and fix on OpenVMS?

To get the patches which are currently on the
system (assuming we are talking PCSI Kits) try
the following:

$pipe product show hist | search sys$pipe oper

The highest entry gives you the date the last time the Operating system was installed (which obsoletes all OS patches).

e.g. $ pipe product show hist | search sys$pipe oper
PRODUCT KIT TYPE OPERATION DATE AND TIME
DEC AXPVMS VMS V7.3 Oper System Install 05-JUN-2001 10:18:14
DEC AXPVMS VMS V7.2-1 Oper System Remove 05-JUN-2001 10:18:14
DEC AXPVMS VMS V7.2-1 Oper System Install 26-JAN-2001 16:58:39


i.e. on this particular system 05-Jan-2001

Then do a

$ pipe product show hist /since= | search sys$pipe patch

to find all the patches installed (and superseeded) afterwards, e.g.

$ pipe product show hist /since=05-jan-2001 | search sys$pipe patch

IBM AXPVMS MQSERIES0510_ECO01 V1.0 Patch Install 13-MAR-2003 17:30:47
DEC AXPVMS VMS73_GRAPHICS V1.0 Patch Install 11-SEP-2002 11:01:15
DEC AXPVMS VMS73_DECW_XTERM V1.0 Patch Install 11-SEP-2002 10:51:56
DEC AXPVMS VMS73_DW_MOT_MUP V1.0 Patch Install 11-SEP-2002 10:51:10
DEC AXPVMS TCPIP_ECO V5.1-151 Patch Remove 20-MAY-2002 11:14:10
...

Bradford Hamilton
Regular Advisor

Re: how can i list os version and fix on OpenVMS?

BTW - don't forget the other products/patches that are (or may be) kept in sys$update:vmsinstal$history!