• BackupNG - task has been destroyed before completion

    6
    1
    0 Votes
    6 Posts
    846 Views
    M
    @marclachapelle Hi, sorry for the delay. I had a theory but after tests that theory is wrong. Here are the files about the incident. [image: 1673537536734-crash-dr-2023-01-11-11_15_03-window.png] Log-Extract.txt
  • 0 Votes
    11 Posts
    2k Views
    A
    @chcnetconsulting Just to mention here that your problem(s) have been addressed in the most recent version of HA-Lizard (2.3.1). Simply upgrading and you are happy again
  • Default settings for CPU vulns

    2
    0 Votes
    2 Posts
    246 Views
    olivierlambertO
    Hi, All.
  • 0 Votes
    1 Posts
    698 Views
    No one has replied
  • GPU passthrough with Video Out

    7
    0 Votes
    7 Posts
    2k Views
    M
    @splastunov Never ran across this before, that's for that screenshot, and command. When I'm able to I'll for sure give this another shot and check these.
  • VGPU RPM

    7
    0 Votes
    7 Posts
    825 Views
    H
    @splastunov By 7.3.0 i meant the package version and that version was also in xcp-ng 7.4 so if the package was there and its license hasn't changed since i would assume it means its still free to use.
  • kernel NULL pointer

    9
    0 Votes
    9 Posts
    2k Views
    stormiS
    An update candidate has a fix for this and should be published tomorrow as an official update.
  • UEFI Bootloader and KB5012170

    Solved
    7
    0 Votes
    7 Posts
    3k Views
    B
    @christopher-petzel Many thanks saved me from hours of searching for a fix
  • Ubuntu Server 22.04 and Java causes VM to hard lock (XCP-ng 8.1)

    1
    0 Votes
    1 Posts
    279 Views
    No one has replied
  • vCPU overcommitment stats

    8
    0 Votes
    8 Posts
    991 Views
    jmaraJ
    @olivierlambert ah good to know thats fine I'll take a look at the metrics maybe I'll write a small rrd stats pusher script as an interim solution for my usecase until XO6 is available. Thanks for letting me know
  • Dual Display on Win 10 VM

    1
    0 Votes
    1 Posts
    190 Views
    No one has replied
  • XCP-ng console unreadable because of error messages

    5
    0 Votes
    5 Posts
    1k Views
    xerioX
    @stormi thanks, will look forward to try this out when the update drops.
  • When attempting to create a OPNsense VM via XO stack becomes unresponsive.

    10
    0 Votes
    10 Posts
    2k Views
    fohdeeshaF
    @MrXeon So, the actual root issue here I believe, is opnsense installs come with an IP and dhcp server already assigned and enabled on the lan interface (I believe it's 192.168.1.1, but don't quote me). If your existing home network already uses 192.168.1.x/24 and already has a dhcp server, booting an opnsense install with it's virtual lan nic set to your existing home lan, there will be a lot of conflicts. Virtual nic order can be whatever you'd like (you can change and move around assignments in opnsense), but if it's preconfigured lan interface gets set to your preexisting lan network, there will be conflicts
  • dom0 vcpu allocation

    2
    0 Votes
    2 Posts
    771 Views
    D
    @gnpcx What did you end up doing for this? The docs dont seem to have any guidance.
  • PCI Passthrough - GPU - Matrox C-series

    1
    0 Votes
    1 Posts
    265 Views
    No one has replied
  • Alert: Control Domain Memory Usage

    Solved
    194
    0 Votes
    194 Posts
    255k Views
    F
    Its not solving it, but you can run echo 3 > /proc/sys/vm/drop_caches to release some of the cache again, without interfering with running processes. [root@host2 ~]# free -m total used free shared buff/cache available Mem: 15958 3308 158 8 12491 2355 Swap: 1023 177 846 [root@host2 ~]# echo 3 > /proc/sys/vm/drop_caches [root@host2 ~]# free -m total used free shared buff/cache available Mem: 15958 3308 2598 10 10051 2751 Swap: 1023 177 846
  • This topic is deleted!

    1
    1
    0 Votes
    1 Posts
    1 Views
    No one has replied
  • Help with xhci_hcd error after USB passthrough

    1
    0 Votes
    1 Posts
    259 Views
    No one has replied
  • Creating a VM using only the XAPI CLI...

    20
    0 Votes
    20 Posts
    6k Views
    olivierlambertO
    Agreed, but the downside is to update the template from time to time. We'll probably create a new Packer plugin to work with XO API, so it will be easier to use and rely on (Packer goal is to prep' a template from scratch and up to date for you, that you can use for solution 2. then)
  • vCPU Over-Subscription...

    3
    2 Votes
    3 Posts
    2k Views
    tjkreidlT
    @epretorious I would add that you have to be careful about overprovisioning when NUMA/vNUMA kicks in, that is when you allocate more VCPUs to exceed the number of physical CPUs of a bank of them as well as the associated physical memory (assume, for the sake of argument, you have two banks of physical CPUs and each has directly accessible to it one of two banks of memory) then things get inefficient because a CPU may need to go across to a different bank of memory to access data and there is additional overhead involved. See for example this article and the two preceding it: https://blogs.mycugc.org/2019/04/30/a-tale-of-two-servers-part-3-the-influence-of-numa-cpus-and-sockets-cores-persocket-plus-other-vm-settings-on-apps-and-gpu-performance/ -=Tobias