Search results

  1. T

    Help: Passtrough Intel IGPU working but no screen output

    Using a Windows 11 vm i can see the hardware showing up in device manager using RDP. I can install the driver... but i dont get any screen output. When i boot proxmox i have screenoutput from Host showing 3 lines and ends with loading kernel.... then when powering on the VM it goes black and...
  2. T

    unused disk script

    Script for searching unused disks: #!/bin/bash echo "searching for unused disks...." for vm in $(qm list | grep -v VMID | awk '{print $1}'); do udisk=$(qm config $vm | grep vm-$vm-disk | grep unused) >> /dev/null if [ "${udisk}" ] then echo "$vm has usused disks: $udisk" udisk=""...