Recent content by dakralex

  1. dakralex

    System inside VM boots up correctly without anything set in Boot Order

    Hi! Can you share the specific VM config with the expected and actual behavior? If there is no given boot config property, then the VM will fallback to the legacy boot order default, which is CD-ROMs, bootable hard disks (i.e. set with the deprecated bootdisk config property) and network...
  2. dakralex

    I can make Proxmox freeze

    Hi! How did you try to gather the logs? Are there no logs at the end for e.g. journalctl -b <boot-nr>? If this is block-related in any way it might happen, because the kernel panics and cannot write to any storage media anymore. In these cases, setting up some form of external console (e.g...
  3. dakralex

    "Image" consuming all of my storage

    Hi! Proxmox VE abstracts away paths with storages, so that users can store VM images, backups, etc. on various storage types (e.g. ext4, zfs, LVM, RBD, iSCSI, etc.). There's a help command to show you the correct command line usage of the command: qm help importdisk USAGE: qm disk import...
  4. dakralex

    Feature request - Memory bandwidth monitor VM summary graph

    Hi! Thanks for the input! Unfortunately, this fails on any device, which does not have the capabilities. We usually only put values in the time series, which are collectable by any system independent from the hardware configuration (e.g. generic task utilization, pressure), especially since...
  5. dakralex

    Constant Kernel Panics on PVE 9 fresh install

    Hm, unfortunately it doesn't seem like there's anything valuable in those logs either. I guess that 4ba997d4d49c4298937fd85fb41c866a was the boot which ended in the kernel stack trace above (at least from the timestamps and the abrupt end of log)? As this seems block-related, you could try to...
  6. dakralex

    Proxmox 9.0.11 randomly freezes with no logs

    Hi! Seems like there was something in the way of writing it to disk, you can try to gather the log on a separate console, e.g. netconsole [0], so that the information persists if there block io is unavailable. [0] https://www.kernel.org/doc/Documentation/networking/netconsole.txt
  7. dakralex

    Constant Kernel Panics on PVE 9 fresh install

    It would be helpful for the kernel stacktrace to be a bit longer, e.g. upload a whole boot and crash log (journalctl can also export a log from a whole boot). I can only see that ZFS seems involved, maybe some ZFS I/O worker panicked? Which CPU is installed on that system?
  8. dakralex

    Constant Kernel Panics on PVE 9 fresh install

    Either way, I'd first check if your hardware is alright, e.g. all cables and the RAM modules are connected correctly and aren't loose, there BIOS configuration is reset (no overlocking, etc.), and so forth. If it doesn't fix the problem, then a full boot log would be beneficial in finding the...
  9. dakralex

    Constant Kernel Panics on PVE 9 fresh install

    Hi! journalctl with PAGER set will usually open in that pager (typically it's less) and therefore you need to page down for journalctl --since="1 hour ago". For a better view of the log from the end of the last boot, you can run journalctl -b -1 -e. What is the output there?
  10. dakralex

    cluster issues after upgrading to pve9

    From the provided log in log-pve540-1.zip it also seems like there's quite a few connection issues, e.g. to the InfluxDB right at the start. I assume that proxmoxW540 is one of the nodes that has the problems starting up? Is the network stable for that/these nodes?
  11. dakralex

    cluster issues after upgrading to pve9

    Are these all nodes in the cluster? What does pvecm status output? Keep in mind that it is not recommended to have a even amount of nodes in a cluster, see e.g. [0]. This seems like a clustering issue first of all. Are the HA resources with node "---" running somewhere unnoticed? Or were these...
  12. dakralex

    Windows 11 VM Issues

    Hi! x86-64-v4 is not a CPU model configuration that QEMU directly provides, so it only works by specifying it for the qemu-server's cpu config, but not in args. What do you mean by "some flags aren't found"? It could be that these features aren't supported by the host CPU itself. If you want...
  13. dakralex

    virtio multiqueue clarification needed

    Hi! In general, the guest's operating system will usually pin each queue to a vCPU core. Therefore, there's not really a performance benefit to use more queues in total than vCPUs as then a vCPU must handle multiple queues then. Multiqueues are best experimented with by measuring the actual...
  14. dakralex

    Vm - destroy unrefrenced disks owned by guest issue

    Hi! Are there any errors shown for Ceph or when listing images manually for that rbd storage?
  15. dakralex

    SMBIOS information is missing by default in a virtual machine

    Hi! It's best to show your interest in a specific Bugzilla entry so that we can track the interest in certain features. There's for example [0] for the general interest of adding any SMBIOS type information and/or [1] for automatically generating these serials. There's already support to...