- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - OpenVMS
- >
- Re: how can i list os version and fix on OpenVMS?
Categories
Company
Local Language
Forums
Discussions
Forums
- Data Protection and Retention
- Entry Storage Systems
- Legacy
- Midrange and Enterprise Storage
- Storage Networking
- HPE Nimble Storage
Discussions
Forums
Discussions
Discussions
Discussions
Forums
Discussions
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
- BladeSystem Infrastructure and Application Solutions
- Appliance Servers
- Alpha Servers
- BackOffice Products
- Internet Products
- HPE 9000 and HPE e3000 Servers
- Networking
- Netservers
- Secure OS Software for Linux
- Server Management (Insight Manager 7)
- Windows Server 2003
- Operating System - Tru64 Unix
- ProLiant Deployment and Provisioning
- Linux-Based Community / Regional
- Microsoft System Center Integration
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Community
Resources
Forums
Blogs
- Subscribe to RSS Feed
- Mark Topic as New
- Mark Topic as Read
- Float this Topic for Current User
- Bookmark
- Subscribe
- Printer Friendly Page
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-03-2003 08:21 PM
06-03-2003 08:21 PM
how can i list os version and fix on OpenVMS?
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-04-2003 01:48 AM
06-04-2003 01:48 AM
Re: how can i list os version and fix on OpenVMS?
$show system
What do you mean by "fix"?
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-05-2003 06:09 AM
06-05-2003 06:09 AM
Re: how can i list os version and fix on OpenVMS?
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
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-05-2003 09:59 AM
06-05-2003 09:59 AM
Re: how can i list os version and fix on OpenVMS?
HTH
Marty
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-05-2003 05:49 PM
06-05-2003 05:49 PM
Re: how can i list os version and fix on OpenVMS?
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-09-2003 11:21 AM
06-09-2003 11:21 AM
Re: how can i list os version and fix on OpenVMS?
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-08-2003 11:50 PM
07-08-2003 11:50 PM
Re: how can i list os version and fix on OpenVMS?
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
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-09-2003 12:28 AM
07-09-2003 12:28 AM
Re: how can i list os version and fix on OpenVMS?
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.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-09-2003 08:58 AM
07-09-2003 08:58 AM
Re: how can i list os version and fix on OpenVMS?
In a standalone system you can try:
SHOW SYSTEM/NOPROCESS/FULL
and in a cluster:
SHOW SYSTEM/NOPROCESS/FULL/CLUSTER
Regards,
Manuel
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-10-2003 08:26 AM
07-10-2003 08:26 AM
Re: how can i list os version and fix on OpenVMS?
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=
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
...
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-10-2003 01:59 PM
07-10-2003 01:59 PM