Search results

  1. dcsapak

    GPU keeps dissapearing

    can you check/post the journal/dmesg of the host?
  2. dcsapak

    Lost Task!

    maybe the node was loaded so much that the requests took longer than usual and timed out? but the timeframe would check out with the missing task
  3. dcsapak

    PDM <= 1.0.2: VM Migration: Endless Line in Task Viewer

    the issue here is that the underlying tool (dd) prints '\r' as "newlines" (it's to overwrite the old text on the cli) on the commandline, etc. it's possibly "normalized" to a \n but the web ui framework simply print it as is, and \r will not be interpreted by the browser ... we could...
  4. dcsapak

    Lost Task!

    hi, was the vm 1000 located on another node perhaps? or is the 'pveEDGE' remote just a single node? can you show what the 'pveEDGE' tasks (on the pve gui, not pdm) looks like?
  5. dcsapak

    PCI Passthrough RTX PRO 6000 with OVMF (UEFI) guest has not initialized the display (yet) (was: ... to Windows guest)

    could you try the options from here: https://pve.proxmox.com/wiki/PCI_Passthrough#%22BAR0_is_0M%22_error_or_Windows_Code_12_Error so setting the cpu to 'x86-64-v2-AES,phys-bits=host,flags=+pdpe1gb' via the cmdline
  6. dcsapak

    GUI timeout and logout on a cluster with 3 Proxmox nodes 9.1.6

    is the time of your client and the server correct?
  7. dcsapak

    Regression in 6.17.13-1/2-pve: DMAR faults with VFIO when intel_iommu=on iommu=pt (works on 6.17.9-1-pve)

    can you post more of the journal, maybe it does contain a hint? is it actually broken or does everything work like usual with just the addition of the new log lines?
  8. dcsapak

    Tape inventory questions

    'remove' removes the tape from the inventory without deleting the data from the tape itself (if there is data on it, even the remove won't work by default, only with the 'force' flag) this is the same as 'proxmox-tape media destroy' (not sure why it's 'destroy' on the cli vs remove on web ui...
  9. dcsapak

    PBS task log retention

    there are two 'log rotation' tasks in your list, can you post the content of those? EDIT: just looked again, the time on those say 'september' so is that the current list of tasks you see there?
  10. dcsapak

    [Coding] PVE.data.ResourceStore.reload() gibt mir alte Daten

    interessantes projekt, aber hast du schonmal gedacht, zumindest teile davon bei uns upstream zu bringen? zb zusätzliche spalten im tree ist denk ich etwas was wir vllt reinnehmen würden. bei dem cluster resources ist es so, dass wenn die config im backend da ist, sollte es auch sofort beim...
  11. dcsapak

    [Coding] PVE.data.ResourceStore.reload() gibt mir alte Daten

    das forum ist zwar nicht wirklich der richtige ort um sowas zu fragen, eher geeignet wäre die pve-devel liste: https://lists.proxmox.com/postorius/lists/pve-devel.lists.proxmox.com/ ein update erzwingen kann man zwar mit 'PVE.data.ResourceStore.startUpdate()' dieses wird aber asynchron...
  12. dcsapak

    Why does PVE 8.4.16 LXC Console show "Connected" but remain a black screen?

    can you post the config of the container? pct config 109
  13. dcsapak

    Switch from Host to x86-64-v3

    aside from that video very obviously being ai generated, the underlying point is not wrong. in modern windows versions, using 'host' cpu mode activates VBS (virtualization based security) which can incur a heavy performance penalty. Alternatively to changing the cpu mode, it might be possible to...
  14. dcsapak

    LXC started without waiting for snippet storage to become available

    Hi, yeah, i guess we're missing an 'activate_storage' in the exec hookscript path that would trigger the mount, etc. would you mind opening a bug for that: https://bugzilla.proxmox.com so we can track it more easily?
  15. dcsapak

    Tape Backup: understanding media sets

    yes this is possible, i'll see if i have time today to test this a bit more (and/or look at the code ;) )
  16. dcsapak

    PCI Passthrough RTX PRO 6000 with OVMF (UEFI) guest has not initialized the display (yet) (was: ... to Windows guest)

    mhmm does it progress if you change the ostype from windows 11 to linux? this only sets a few specific parameters, but maybe one of them is the culprit
  17. dcsapak

    Proxmox - Share GPU Resources

    Hi, There are only 2 ways to share (phsyical) GPU resource to guests AFAIK: * use of virtio-gl (though that is currently limited to opengl, vulkan is in the works) * use of vgpus, though there are multiple ways: - for intel, there is the intel arc b50 pro which can split the gpu with sr-iov...
  18. dcsapak

    Tag Propagation from PVE to PDM

    hi, yep it's currently not implemented, would you mind opening a bug report on https://bugzilla.proxmox.com (maybe check if there already is one) so we can keep better track of it?
  19. dcsapak

    PCI Passthrough RTX PRO 6000 with OVMF (UEFI) guest has not initialized the display (yet) (was: ... to Windows guest)

    one other issue that could be happening is that allocating the memory of the windows vm just takes an (absurd) amount of time. we had such behavior in the past, especially if the memory is fragmented. Could you try to reduce the amount of memory in the windows vm (temporarily) to e.g. 8G to...