Recent content by yaro014

  1. Y

    Any way to get nested Hyper-V working on AMD system

    So the PVE documentation now mentions Note: Microsoft Hyper-V as a nested Hypervisor on AMD CPUs should work with Proxmox VE 7. https://pve.proxmox.com/wiki/Nested_Virtualization I'm still unable to boot Win11 with nested virtualisation enabled. Did anyone have any luck with this ?
  2. Y

    VirtioFS support

    You can make it a systemd service so you dont have to deamonize just like it's shown in the post i mentioned earlier.
  3. Y

    VirtioFS support

    Can you post your entire virtiofs.pl ?
  4. Y

    VirtioFS support

    Is this any use ? https://forum.proxmox.com/threads/vm-hookscripts.87119/
  5. Y

    Hardware errors with PCI passthrough

    Well this returns below : root@pve:~# lspci -nn| grep '03.1' 00:03.1 PCI bridge [0604]: Advanced Micro Devices, Inc. [AMD] Starship/Matisse GPP Bridge [1022:1483] 2a:00.0 PCI bridge [0604]: ASPEED Technology, Inc. AST1150 PCI-to-PCI Bridge [1a03:1150] (rev 04) 60:03.1 PCI bridge [0604]...
  6. Y

    Any way to get nested Hyper-V working on AMD system

    Yes, I am now on latest beta `pve-manager/7.0-5/cce9b25f (running kernel: 5.11.22-1-pve)` And I have config for nested virtualisation enabled. root@pve:~# cat /sys/module/kvm_amd/parameters/nested 1 From time to time I managed to get windows booted and run VM in virtualisation and then it...
  7. Y

    Any way to get nested Hyper-V working on AMD system

    I'm on AMD platform with 3995WX When I turn on nested KVM support the system becomes a little bit unstable even when VMs are not doing any nested virtualisation. When I launch Windows10 with WSL2 enabled the VM freezes permanently very quickly after reboot. I read that nested AMD doesnt work...
  8. Y

    Hardware errors with PCI passthrough

    I'm not sure if this is directly related to PCI passthrough however dmesg on host returns, I don't really notice any major instability because of it but thought about asking as someone might have come across it before. [171859.861517] pcieport 0000:00:03.1: AER: aer_status: 0x00000040...
  9. Y

    SPICE memory higher than 32MB

    I turns out I wasn't patient enough, the black screen happens after each change of memory size and can take up to 5 minutes after which it just keeps working without delay on each reboot.
  10. Y

    SPICE memory higher than 32MB

    When I go above 32MB I just get black screen on a guest.
  11. Y

    [SOLVED] Bridge Inside VM with firewall enabled stops communication.

    It was exactly that.. a Mac address changed. was testing on fedora iot as guest and it behaved oddly.
  12. Y

    SPICE memory higher than 32MB

    Is there a way to increase spice memory to higher than 32MB via gui ? Or would it bring any performance benefit ?
  13. Y

    [SOLVED] Bridge Inside VM with firewall enabled stops communication.

    I have a Virtual Machine with firewall set to=1 on main interface. When I have firewall enabled directly on that interface and it's configured inside virtual machine it works fine. When I add it to a bridge and set IP address to a bridge (inside VM) communication with network stops...
  14. Y

    VM Hookscripts

    Well what I'm trying to achieve is to script multiple VirtioFS shares into my VM using hookscript. To add single share there is a long line to be added into ARGS section so I'm looking for a method to do that. I know I can keep adding and removing them but I would rather have that being applied...
  15. Y

    VM Hookscripts

    Is there a way for VM pre-start hookscripts to dynamically append to "args:" section of VM config file ? What I'm trying to accomplish is to append to original config "args:" without altering config. I found something that would allow me to edit various config elements and write back to config...