I couldn't get a nice vagrant install going with libvirt (I'm sure you could), so I just created a VPS with Ubuntu 22 instead. If you're not on a Windows machine, I highly suggest this as an alternative. I just stole the few commands that were in the vagrant file and installed it.
i.e.
apt update
apt install net-tools -y
apt install tshark -y
curl -fsSL https://get.docker.com -o get-docker.sh
sh get-docker.sh --version 24.0.5
usermod -aG docker vagrant
newgrp docker
apt install git -y
This was easier than messing around with things locally. I don't quite know why the obfuscated script didn't work on my local machine, but this let me pass the assignment.
I couldn't get a nice vagrant install going with
libvirt(I'm sure you could), so I just created a VPS with Ubuntu 22 instead. If you're not on a Windows machine, I highly suggest this as an alternative. I just stole the few commands that were in the vagrant file and installed it.i.e.
This was easier than messing around with things locally. I don't quite know why the obfuscated script didn't work on my local machine, but this let me pass the assignment.