Installed qemu from gslapt (Fatdogs package manager).
Created a qemu (virtual) disk.
Downloaded OpenBSD 7.1 installation iso and booted that using kvm/qemu
Ran through the installation process and rebooted into the newly installed system.
pkg_add'd jwm, rox, geany, galculator, libreoffice, firefox-esr ...etc. and started X (xenodm), and logged in as 'user' into that desktop ... somewhat Puppy look-n-feel.
With qemu you can boot in snapshot mode, copy on write a.k.a layered filesystem style, where the main system is read only and all changes are stored separately. You can later reboot with those change preserved, or simply throw them away after each session, which is what I tend to do once the base system is setup as I like. With qemu the base system and changes have to be on the same filesystem - so I cheated and created a sfs of the base (ro) system, using lz4 compression, and then mounted that sfs, and then sym linked that mounted version into /root ... which is in ram. So the base system is a sfs, and the system is layered. I then started OpenBSD using that and where the snapshot/changes are also written to /root (ram). Much more closer to puppy style. Only thing not in ram is the base sfs, but with lz4 and its fast decompression speeds that's not too much of a issue.
So Fatdog host, OpenBSD guest via kvm/qemu, and where mostly running in ram, with no changes being preserved between reboots and the main system stored in a sfs. The main factor there is that as changes accumulate so that eats ram, but for general browsing/office type activities that worked well on my 4GB system (that is reduced down to 3.3GB after graphics takes its chunky slice). To add in a bit more ram I booted Fatdog with basesfs=direct rather than =ram, so its main sfs isn't copied into ram and frees up around 400MB of additional ram.
A nice feature of that combination is that you have all of the Linux type drivers/modules - for sound, wifi ...etc. (host system) that otherwise might not be included within OpenBSD. For example with Openbsd fowarding sound via sndiod to Fatdog, and using the wifi net connection established within Fatdog before starting OpenBSD.
Main OpenBSD system ... stored in a SFS
|
qemu copy on write snapshot (save/changes area) using ram
|
Following shutdown changes can be preserved (left) or thrown away
There are qemu tools to merge in the snapshot into the main system; And/or you can simply boot in full read/write mode to make changes, perhaps add or remove packages (pkg_delete geany for instance), and then reform a new version of the main sfs (mksquashfs) to reflect those changes.