The code is located at `~/lab`. User: student Pass: student Option 1: QEMU Image + SSH Download the QEMU image: $ wget http://os.inf.tu-dresden.de/Studium/AOS/SS2026/containers/student-qemu.qcow2 Run the VM image: $ qemu-system-x86_64 \ -m 2G \ -hda student-qemu.qcow2 \ -net nic \ -net user,hostfwd=tcp:127.0.0.1:2222-:22 \ -nographic \ -cpu host \ -machine type=q35,accel=kvm You should now be able to SSH into it: $ ssh -p 2222 student@localhost You can use Vim directly OR connect remotely using VS Code with the "Remote - SSH" extension. For simplicity, add the following to your `~/.ssh/config`: ``` Host student-vm HostName localhost User student Port 2222 ``` Option 2: VirtualBox Image with VS Code Download the VirtualBox image: $ wget http://os.inf.tu-dresden.de/Studium/AOS/SS2026/containers/student-vbox.ova Import the image into VirtualBox, and you should be good to go. Option 3: Fallback If the first two options don't work for you, you can download the code directly and work with it locally. However, this is not recommended. $ wget http://os.inf.tu-dresden.de/Studium/AOS/SS2026/containers/student-raw.tar.xz