- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - OpenVMS
- >
- Re: Problem with VMS83A_UPDATE V4.0
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
10-16-2007 12:23 PM
10-16-2007 12:23 PM
Problem with VMS83A_UPDATE V4.0
Ken
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-16-2007 06:09 PM
10-16-2007 06:09 PM
Re: Problem with VMS83A_UPDATE V4.0
this is done in the routine PCSI_POSTINSTALL.COM:
...
$!This kit provides a new SYS$BASE_IMAGE.EXE. The the system
$!version needs to be reset. This is done by creating and running
$!a small COM file to run the version that was initialized above.
$!
$ os_version = "V8.3"
$ Current_default = F$ENVIRONMENT ("DEFAULT")
$ Set Default SYS$COMMON:[SYS$LDR]
$ ww1 = "write work_1"
$ open/write work_1 post_setsysver.com
$ ww1 "$ run sysver"
$ ww1 "REPLACE ""''os_version'""
$ ww1 "write"
$ ww1 "exit"
$ ww1 "$ exit"
$ close work_1
$!
$!Now run the com file
$!
$ @post_setsysver.com
...
But why it didn't work and asked you instead I don't know (never had a problem with this kit). Have you redefined SYS$COMMAND or such? You should have entered V8.3 instead of ctrl/z. But you can easlily fix it using the above sequence of commands.
regards kalle
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-17-2007 03:53 AM
10-17-2007 03:53 AM
Re: Problem with VMS83A_UPDATE V4.0
--
Though you don't need it, here's the shorter version of the sequence that kalle showed, with this version largely extracted from the OpenVMS FAQ:
$ SET DEFAULT SYS$COMMON:[SYS$LDR]
$ RUN SYSVER
REPLACE V8.3
WRITE
^Z
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-18-2007 01:12 AM
10-18-2007 01:12 AM
Re: Problem with VMS83A_UPDATE V4.0
$ prod install
line, I have these defines:
$ define/sys/nolog no_ask$backup true
$ define/sys/nolog no_ask$reboot true
$ define/job/nolog archive_old no
$ def/u sys$input sys$command
I've used this command procedure to install other UPDATE patches and never had a problem before. Shouldn't the patch mechanism work correctly with or with out the last define?
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-18-2007 01:51 AM
10-18-2007 01:51 AM
Re: Problem with VMS83A_UPDATE V4.0
regards Kalle
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-18-2007 02:23 AM
10-18-2007 02:23 AM
Re: Problem with VMS83A_UPDATE V4.0
I've attached the procedure.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-18-2007 03:44 AM
10-18-2007 03:44 AM
Re: Problem with VMS83A_UPDATE V4.0
SYSVER is far from the only thing that reads data records from the input stream; from data embedded directly in the command procedure file.
DCL I/O redirection is a fairly ugly add-on to the environment. And, well, you've been lucky so far if you've been using this for a while.
(And why are you redefining SYS$INPUT?)
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-18-2007 05:04 AM
10-18-2007 05:04 AM
Re: Problem with VMS83A_UPDATE V4.0
I will remove the line from my command procedure.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-19-2007 04:02 AM
10-19-2007 04:02 AM
Re: Problem with VMS83A_UPDATE V4.0
Redefining sys$input is a way to get the input to prompt from somewhere else, and that implies the local command environment has some application stuff that prompts from the terminal. If that's the case, you might want to (start to) embed the redirection within the command procedure. Blanket specification of a sys$input is a bad idea.
You've inverted the norm, here. (No, that's not a way to look for norm's pocket change.) OpenVMS documentation classically indicates what is permitted and is supported.
It's simply not possible to document all that can be wrong or that does not work; us end-users are just way too original and way too creative for that documentation approach to ever work. In nerd-speak, the stuff that doesn't work is an infinite set.
FWIW...