Recent content by vinnyvinny

  1. V

    Code 43 GPU Passthrough with Nvidia: I've tried all guides and still can't get success.

    cat /etc/modprobe.d/vfio.conf options vfio-pci ids=10de:1c03,10de:10f1 vm conf hostpci0: 04:00.0,x-vga=on,pcie=1 hostpci1: 04:00.1,pcie=1 machine: q35 cpu: host balloon: 0 bios: ovmf bootdisk: scsi0 cat /etc/default/grub GRUB_CMDLINE_LINUX_DEFAULT="quiet intel_iommu=on video=efifb:off...
  2. V

    Code 43 GPU Passthrough with Nvidia: I've tried all guides and still can't get success.

    Try nvidia kvm patcher https://github.com/sk1080/nvidia-kvm-patcher I completed all steps in this guide, geforce 1060 also work!
  3. V

    Code 43 GPU Passthrough with Nvidia: I've tried all guides and still can't get success.

    Hello, I had the same problem, after 16 hours, multiplicity how to (e.g. nvidia-kvm-patcher, msi mode). The problem was resolved when i try passthrough GeForce 960 instead GeForce 1050. Nothing change only video card, that all. The latest nvidia driver worked!
  4. V

    how to get vm ip address from api

    But qemu guest agent doesn't resolve any information. I install correctly guest agent to linux vm, checked it with command pvesh create nodes/nodeid/qemu/vmid/agent -command ping but command https://x.x.x.x:8006/api2/json/nodes/nodeid/qemu/vmid/agent returns "null"
  5. V

    how to get vm ip address from api

    I want write script which gets ip address from within the OS, in case OS gets address by DHCP. First I found a script that I wrote on top, but address is taken from the host table arp with which it starts, this is not a good way and he doesn't work. Then I read at this forum that if the guest...
  6. V

    how to get vm ip address from api

    I understand that it takes ip address from config file? But interface are configured as manual ip Need to get the address inside the OS :rolleyes:
  7. V

    how to get vm ip address from api

    Hello Manu, thanks for a quick reply, I'll try your method
  8. V

    how to get vm ip address from api

    Anybody please tell me, is there a way to get ip address vm's via api interface? i try this script #!/bin/bash # proxvm # Output in specifed format (default csv) all virtual machines on proxmox 4+ SERVER=localhost USERNAME=apiread@pve PASSWORD=123456 FORMAT=csv while [[ $# > 0 ]]; do...