Installing NetBSD 9.1 VAX on SIMH

So I wanted a VAX system to play around with, however one that supports modern software. The only real modern operating system running on VAX is NetBSD. The only feasible emulator to emulate the VAX architecture is SIMH. So with that illusion of free choice out of the way, let’s install NetBSD/vax on SIMH!

Configuration

load -r ka655x.bin
set cpu 256m

set rq0 ra92
at  rq0 dsk1.dsk

set rq1 ra92
at  rq1 dsk1.dsk

set rq2 cdrom
at  rq2 NetBSD-9.1-vax.iso

at xq0 enp2s0
boot cpu

This config creates two RA92 disks (1.4G), I’ll put the OS on one of the disks and the home directories on the other in order to have some additional space.

Installation

After the firmware checks are done we boot the ISO image on RQ2 which corresponds to dua2 in the firmware, as such we type:

>>>boot dua2

Once booted NetBSD asks us for the terminal type vt220 is fine. NetBSD Install Menu

We follow the normal NetBSD install on disk ra0.

NetBSD Install in progress

Once the install is done and we are back in the main menu we hit Utility menu and go to Partition a disk we then partition ra1 to have the home directory partition on it.

NetBSD Partition menu

We then reboot the system, once at the firmware prompt we boot the installation from the disk this time which is dua0.

>>>boot dua0

Now we have to ensure that /home exists and is mounted:

mkdir /home
echo "/dev/ra1a /home ffs rw" >> /etc/fstab
mount /home

And that’s virtually it.

Contents