OpenBSD xterm-256color ksh 240 views

Because of a suggestion on misc@, i decided to install OpenBSD 7.6 alongside OpenBSD 7.7 on two partitions.

One on wd0a, the other on wd0p. Both are sharing the swap and the home partition.

The QEMU commandlines went by too quickly, sorry about that.

So, here they are again:

dd if=/dev/zero of=openbsd_dual.img bs=1M count=10000

qemu-system-x86_64 -m 1024 -smp cpus=1,cores=1 \

-drive format=raw,file=openbsd_dual.img \
-cdrom install76.iso -boot d \
-device virtio-net-pci,netdev=network0 \
-netdev user,id=network0,hostfwd=tcp::2001-:22 \
-nographic

qemu-system-x86_64 -m 1024 -smp cpus=1,cores=1 \

-drive format=raw,file=openbsd_dual.img \
-cdrom install77.iso -boot d \
-device virtio-net-pci,netdev=network0 \
-netdev user,id=network0,hostfwd=tcp::2001-:22 \
-nographic

qemu-system-x86_64 -m 1024 -smp cpus=1,cores=1 \

-drive format=raw,file=openbsd_dual.img \
-boot c \
-device virtio-net-pci,netdev=network0 \
-netdev user,id=network0,hostfwd=tcp::2001-:22 \
-nographic