- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - OpenVMS
- >
- Re: Changing SYSGEN parameters without using sysge...
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
01-31-2007 11:31 PM
01-31-2007 11:31 PM
Changing SYSGEN parameters without using sysgen
Question:
Is it possible, or is there a tool, to change sysgen parameters without using sysgen.
We use infoserver software to create disk images. We have images with OpenVMS 7.2, 7.3-2 and so on. And now we want to change a sysgen parameter on all these images. The "normal" way is to use the correct OpenVMS version, mount the image and use sysgen to adjust the parameter. But we want a faster way. Is this possible?
Thanks.
Piet
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-31-2007 11:39 PM
01-31-2007 11:39 PM
Re: Changing SYSGEN parameters without using sysgen
the sysgen parameters are stored in binary format in ALPHAVMSSYS.PAR (or VAXVMSSYS.PAR) on the system disk in the specific root of the system.
If you DUMP the file, you can certainly guess about the layout and then change the file contents with PATCH...
Volker.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-31-2007 11:43 PM
01-31-2007 11:43 PM
Re: Changing SYSGEN parameters without using sysgen
We have made a dump but we are looking for a more save way...?
(I now the most save way is to use MODPARAMS or SYSGEN)
Piet
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-31-2007 11:59 PM
01-31-2007 11:59 PM
Re: Changing SYSGEN parameters without using sysgen
what's safer than PATCH - once you know what you're doing ;-)
If it's a parameter, which relates to other parameter values, you should run @AUTOGEN anyway. If it's just a simple parameter value change not related to any other parameter, finding the parameter name with DUMP and locating the parameter value in the next couple of bytes is pretty straightforward. You can verify the binary value found in the file against the value found in the latest SETPARAMS.DAT file in that root.
I cannot think of any other 'supported' method except using SYSGEN.
Volker.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-01-2007 12:05 AM
02-01-2007 12:05 AM
Re: Changing SYSGEN parameters without using sysgen
We are not looking for a "supported" method, we do not think there is one other than using sysgen.
But when using dump and patch, you need to find out where to find the values in every version off OpenVMS we use. A special written tool thould be much easier.
Greetings,
Piet
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-01-2007 12:35 AM
02-01-2007 12:35 AM
Re: Changing SYSGEN parameters without using sysgen
the DISKBLOCK tool comes to mind (see OpenVMS Freeware CD):
$ MC DISKBLOCK
DISKBLOCK> select/file sys$system:alphavmssys.par
DISKBLOCK> sea/string="GBLSECTIONS"
%DSKB-I-SEARCHING, Searching blocks 1 to 21 for STRING "GBLSECTIONS" at 14:29:30
%DSKB-I-FOUND, STRING "GBLSECTIONS" Block: 1. Offset: 73 (%X049)
then
DISKBLOCK> DUMP
DISKBLOCK> EXAMINE ...
DISKBLOCK> DEPOSIT ...
DISKBLOCK> REWRITE
Volker.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-01-2007 01:15 AM
02-01-2007 01:15 AM
Re: Changing SYSGEN parameters without using sysgen
I'd probably make the parameter changes in MODPARAMS.DAT and trigger the AUTOGEN reboot cycle during the boot; I'd use the same basic mechanism that OpenVMS uses for this purpose. Either load your own MODPARAMS, or append your settings, or use the included-file syntax.
There are other data files containing system parameters around, and that feed calculations into the whole process.
You would be able to use this same MODPARAMS scheme to customize specific installations, and to manage future parameter changes.
I've had experience with these fast-load configurations, and the Host-based InfoServer makes this really nice. Where it gets a little weird is with the corner cases, such as the GPT disks, or (as you've discovered) with site-local system parameters.