Recent content by Thies88

  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

    [SOLVED] iGPU intel 620 PCI passthrough on Intel NUC7i5DNH

    i also have an NUC7. 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. It just stays black and after couple of seconds screen displays "No Signal" /etc/default/grub intel_iommu=on iommu=pt...
  3. T

    single nic to multiple bridges

    Hi, I use this config for communication between 2 OPNSense VM's (CARP SYNC interfaces) on 2 different Proxmox Hosts with both 1 nic. Using your input we need to do something like this: 1. We have the default vmbr0(setup for 172.27.0.0/16). Make it vlan aware (WebGui). 2. Create a Linux...
  4. T

    IDE cloud-init volumes are not usable when cold-booting a VM

    came across this post after seeing the same issue using: debian-12-genericcloud-amd64.qcow2 where cloudinit is not initializing. The exact same setup (VM config) works on ubuntu-24.04-server-cloudimg-amd64.img but doesnt work on debian-12-genericcloud-amd64.qcow2. This was my fix (correct VM...
  5. T

    Moving all disks to new Storage

    Shell is accessable within the webinterface: DATACENTER --> nodename --> Shell. open shell --> typ: nano movedisks.sh --> copy/paste script --> CTRL + X --> confirm with Y and hit Enter --> typ: bash movedisks.sh
  6. T

    [SOLVED] Web GUI not working after reboot

    Can you resend output of: ip a and cat /etc/network/interfaces Also: your output shows: /etc/network/interface source /etc/network/interfaces.d/* is there a: /etc/network/interfaces file ? and are there files in: /etc/network/interfaces.d ? For wat i know default there is only one file...
  7. T

    [SOLVED] Web GUI not working after reboot

    based on your output: replace: /etc/network/interfaces and assuming eno3np0 is the NIC you plugged in a cable with: auto lo iface lo inet loopback iface eno3np0 inet manual auto vmbr0 iface vmbr0 inet static address 192.168.1.76/24 gateway 192.168.1.1 bridge-ports eno3np0...
  8. T

    [SOLVED] Web GUI not working after reboot

    Output from: ip -a shows that all your interfaces are DOWN. Maby check your /etc/network/interface. Maby its a typo but i see gatewat, should be gateway ?
  9. 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=""...
  10. T

    Moving all disks to new Storage

    Very simple script, no error checking: input vm id and target storage name #!/bin/bash read -p "VM ID: " vm read -p "Target storage name: " target echo . echo "Migrate all disks for VM: $vm to Storage: $target" echo . read -p "Are you sure ? | Y: Continue N: Stop " go if [ "$go" = "y" ] || [...
  11. T

    VGA Passthrough : "vfio: failed to set iommu for container: Operation not permitted"

    did you add allow_unsafe_interrupts : echo "options vfio_iommu_type1 allow_unsafe_interrupts=1" > /etc/modprobe.d/iommu_unsafe_interrupts.conf also try to to set the following in your VMID.conf: vga: none I also found this on the forum... please read it it could be a HP problem...
  12. T

    VGA Passthrough : "vfio: failed to set iommu for container: Operation not permitted"

    Ok please rerun the following and post them here in a replay: lspci -n -s 0b:00.0 find /sys/kernel/iommu_groups/ -type l cat /proc/cpuinfo meanwhile you can try the following: edit your config files as follows (just copy paste the following ) mv /etc/modprobe.d/vfio.conf...
  13. T

    VGA Passthrough : "vfio: failed to set iommu for container: Operation not permitted"

    disable_vga=1can be found in vfio.conf maby you can remove it. I wil take a look when i'm at home. I see you have 2 gpu' s installed ?
  14. T

    VGA Passthrough : "vfio: failed to set iommu for container: Operation not permitted"

    Im using a HD 6850 with passtrough (Windows 10) using SMBIOS with the followwing commands. Also on a second host an IGD HD4600 (i5 4670): Did you try (with smbios) removing the "disable_vga=1" because that doesnt work with smbios. But maby its a good idea to start from the beginning: Please...
  15. T

    PVE 4 KVM live migration problem

    First of all, i have exactly the same problem as alitvak69. Same logging/error messages. Im running 2 Proxmox instances (Virtual) on top of a single Proxmox box. As CPU type i have no other option then to use the host cpu (else i get a no hardware acceleration found), but then its the same cpu...