Minimum Boot

General VMS based discussions.
Post Reply
Message
Author
User avatar
issinoho
Site Admin
Posts: 202
Joined: Tue Feb 01, 2005 12:53 am
Location: Scotland
Contact:

Minimum Boot

#1 Post by issinoho »

In order to recover from a system with a faulty setup that means that logging in after a normal boot is impossible (e.g. exhausted pagefile), a minimum boot can be executed which will bypass the SYSTARTUP_VMS.COM

From the console, boot to SYSBOOT

On VAX

Code: Select all

>>> b/e0000000 dua0
On Alpha

Code: Select all

>>> boot -flags 0,1 dka0
In SYSBOOT

Code: Select all

SYSBOOT> SET STARTUP_P1 "MIN"
SYSBOOT> CONTINUE
Once logged in, reset to a normal boot sequence

Code: Select all

$ run sys$system:sysboot
SYSBOOT> PARAMETERS USE CURRENT
SYSBOOT> PARAMETERS SET STARTUP_P1 ""
SYSBOOT> PARAMETERS WRITE CURRENT
SYSBOOT> EXIT
And finally reboot

Code: Select all

$ @SYS$SYSTEM:SHUTDOWN

Post Reply