ICT: Diary
D: 28 W: 05

< December 2023 >
Sun Mon Tue Wed Thu Fri Sat
 12
3456789
10111213141516
17181920212223
24252627282930
31 

Based on notaweblog.php by joshua stein

[ ] Saturday, 30 December 2023 [ ]

Libretto 70CT

Created an 20 Gbyte virtual partition:

sudo /usr/bin/qemu-img create -f qcow2 29.img 20G

Then installed 2.9 OpenBSD

/usr/local/bin/qemu-system-i386 -m 2048 -monitor stdio \
-hda 29.img  -cdrom /dev/cd0a -boot d

Needed increase ulimit[hint] and had to run locally on the machine.

The default e1000 nic was not found by OpenBSD 2.9 so created a qemu startup script:

#! /bin/sh -x
# Start Qemu OpenBSD 2.9
#
/usr/local/bin/qemu-system-i386 -m 2048 \
	-device rtl8139,netdev=net0 \
	-netdev user,id=net0 \
	-no-fd-bootchk \
	-monitor stdio \
	-hda 29.img \
	-cdrom /dev/cd0a

After creating a hostname.rl0 with dhcp it automatically obtained the Qemu default address.


$Id: diary,v 1.38 2025/01/01 22:43:54 fred Exp $