28 lines
1.1 KiB
Markdown
28 lines
1.1 KiB
Markdown
If you can boot .ova files (VirtualBox), https://downloads.laboratoryb.org/secure/TechStream_12.20.024-v2.ova, password hacktheplanet/hacktheplanet, is an XP VM with TechStream installed.
|
|
|
|
# Install environment
|
|
- Fedora, tested on 38, 39 and 40
|
|
- An Acer Chromebook C720 was usable, so you need little CPU / RAM / disk space (5GB?)
|
|
|
|
## Setup
|
|
```sh
|
|
git clone https://github.com/virtio-win/virtio-win-pkg-scripts
|
|
# TODO Replace this with git submodule?
|
|
sudo wget https://fedorapeople.org/groups/virt/virtio-win/virtio-win.repo \
|
|
-O /etc/yum.repos.d/virtio-win.repo
|
|
|
|
sudo dnf install -y virtio-win virt-v2v virt-manager
|
|
|
|
sudo systemctl restart libvirtd
|
|
|
|
# Then, as root / with sudo, create the VM in the default pool
|
|
sudo virt-v2v -i ova /home/mkennedy/Downloads/TechStream_12.20.024-v2.ova -o libvirt -of qcow2 -os default -n default
|
|
```
|
|
|
|
Then, in Virtual Machine Manager, File > Add Connection ... > QEMU/KVM User session.
|
|
|
|
You will see your TechStream install. Double-click to open, then edit Details and remove
|
|
1) the virtual NIC (which won't be accessible).
|
|
2) the graphical tablet (which will blackhole your mouse inputs once it connects to the VM).
|
|
|