OpenVMS Notes: x86-64 Porting Diaries
edit: 2024-08-24
Executive Summary
- Platforms like PDP, VAX, and Alpha employ a firmware-based BIOS where you could boot the system with commands like "b
dua0" to boot from unit 0 on disk controller ua
- All modern computers, including Itanium and X86-64, now employ a firmware-software-hybrid technology, known as UEFI,
which executed by an internal management processor (an x86 thingy that is always running as long as power supply available,
even if the server is powered off)
- You can do a lot of stuff from a locally connected VGA terminal and keyboard but this does not include
installing OpenVMS on a disk for the first time. That activity must be done over the serial port, or iLO, which act
as terminal device OPA0:
serial |
this will require a serial null-modem cable connected between your server and your laptop (or a VT100 compatible
monitor if you can find one). Connecting a serial cable to your laptop may require the purchase of a third-party
dongle (USB-to-DB9). See my notes here. |
iLO |
obviously no special hardware is required to connect to an iLO port. But you would need to set the iLO address, then
connect it to your network, then connect to the port via another computer on the network. Anyway, this is only
method when installing OpenVMS x86 on an x86-64 server. |
- OpenVMS-9.2-2 x86-64 can only be installed on a machine that employs UEFI. BIOS-only machines will not work.
Machine |
Console Firmware |
OpenVMS Possible? |
Notes |
HP DL380p Gen8 |
BIOS |
N |
380p = performance; 380e = entry model |
HPE DL380 Gen9 |
UEFI |
Y |
|
- The official 922 installation docs found at the VSI site are really well written so you might not need the following information (although they seem to
focus a little more on installing OpenVMS on a Virtual Machine). What follows are some problems I encountered when doing a
bare-metal install on an HPE DL380 Gen9
- OpenVMS installs on any system technology will require you to communicate with OpenVMS via terminal port OPA0, and the
x86 install is no different. The first steps are GUI-based which require a VGA monitor to run UEFI program VMS_BOOTMGR
which usually defaults to device COM1 (which becomes OPA0).
- OpenVMS-9.2-3 CAVEAT: the updated VMS_BOOTMGR introduces a new boot flag indicator called OPA0, and
commands: OPA, OPA0, and NOOPA. So if you are installing or upgrading to OpenV-MS-9.2-3 then first
attempt to do everything from the VGA console without messing around with COM1 or the iLO port.
- Since we will eventually need to connect to OPA0 via COM1, I connected a via the iLO then played with the VSP
(Virtual Serial Port) command which only connects to COM2
- The VSI docs indicate that the COM command inside VMS_BOOTMGR will be able to connect to COM2 but this was all that
was available on my system.
command |
meaning |
COM |
display current setting |
COM 1 |
enable COM 1 |
COM 0 |
disable COM 1 |
Note that COM1 was already enabled but was not working for me. There was no VMS_BOOTMGR command to change to device COM
2 so I needed to modify a BIOS setting of this machine so that the VSP (virtual serial port) command connects to COM1
Prepping the media
- Many servers (and personal computers) today do not host any optical disk drives so I use a USB-based ASUS
(SDRW-08D2S-U) Slim External 8x DVD Writer
- CAVEAT: this beast is power hungry so both USB connectors (on the drive) must be plugged in for both reading as
well as writing.
- The HPE DL380 Gen9 did not have enough USB ports so I was forced to use a so-called USB power bar. Twenty bucks on
Amazon.
- I logged into the VSI portal then downloaded the kit which included file X860922.ISO which is 1.44 GB in size making
easy for writing to a single layer DVD.
- Because the ISO file represents a multi-partition image, you must use burner software that will preserve all partitions.
- I used this: Express Burn by NCH Software. Select "tab:
ISO" then click on "Write ISO"
using the iLO (rather than the serial port)
Steps
- unplug the USB-DVD
- Why? power-on diagnostics have been known to clobber writable USB media. Oh why didn't those early
USB developers include a write-protect switch?
- power up the server (again)
- wait until you see the prompt for keys: F9, F10, F11
- hit the F10 key:
- if you wish to setup your RAID controller and/or iLO port graphically
- Note that one drive (or RAID set) needs to be designated DEFAULT in order for it to be exposed to console
firmware.
- hit the F9 key:
- if you wish to setup your RAID controller and/or iLO port non-graphically
- Note that one drive (or RAID set) needs to be designated DEFAULT in order for it to be exposed to console
firmware.
- to run any console programs including UEFI Shell (which you will use to find/start VMS_BOOTMGR)
Legend:
<ur> = user response
<sr> = system response
<enter> = hit the "Enter Key"
[[ View ]] = some higher level activity
===============================================================
<ur> [[ Physical Action ]] Plug in the USB-DVD then wait for the drive LEDs to stop blinking
<ur> [[ GUI Action ]] Select "UEFI Shell"
<sr> Shell>
<ur> map -r
("-r" forces the map command to rescan all the hardware)
<sr> [[ displays a list of block structured devices (BLK0, etc) ]]
1 If any of these contain a file system, then you will see a second entry (FS0, etc)
2 FS0 should point to your DVD (if this is your first time)
3 If you do not see any FS devices then your DVD burner failed to preserve the EFI partition
4 On a VMS update, the DVD drive will most likely come up as FS1
<ur> fs0:<enter>
<sr> fs0:\>
<ur> dir
<sr> [[ View ]] directory listing (efi must be one of them; this is where the UEFI/EFI files will be found)
<ur> cd efi
<sr> fs0:\efi\
<ur> dir
<ur> [[ View ]] directory listing
<sr> cd vms
<sr> fs0:\efi\vms\
<ur> [[ View ]] directory listing
<sr> vms_bootmgr
<sr> View: GUI-based tool
=========================================================================================
<ur> using the iLO port, connect to Virtual Serial Port via the "VSP"command
=========================================================================================
<ur> dev
(displays available media)
<sr> dna5020
(this is my optical drive)
<ur> boot dna5020
=========================================================================================
<sr> Graphics i/o is now suspended. Installation continues on COM1 (via "VSP")
=========================================================================================
<sr> VMS installation menu is presented (choose "item 1" for INSTALL)
Part-2
If everything works properly over then next few reboots, then use ...
... the VMS_BOOTMGR command "AUTO" to configure your system for an automatic boot.
Note: This is different from what you might do on an Itanium
Back to
Home
Neil Rieck
Waterloo, Ontario, Canada.