Everything posted by SimonF
-
VM von außerhalb des Unraid Logins starten?
- SPICE Support + Config
Is state connected when you look at the VM XML when the VM is running?- Having trouble cloning a VM
This is the way the clone function in VM manager works tries CP with reflink if that fails reverts to rsync. You cannot clone if snapshots exist. The rsync failed can you try running in manually to see why it fails?- SPICE Support + Config
This should be all that is needed for Spice. Tested on Windows works as expected. You need vdagent to be installed this is not the same as the guest agent. <channel type='spicevmc'> <target type='virtio' name='com.redhat.spice.0' state='connected'/> <alias name='channel1'/> <address type='virtio-serial' controller='0' bus='0' port='2'/> </channel> https://www.spice-space.org/download.html- SPICE Support + Config
Is guest Linux or windows?- SPICE Support + Config
What client are you using? XML should be modified when changes options, Which Unraid Version are you running. For spice you need to use virt-viewer, Web console does not support copy paste.- qcow2 not booting on OVMF
- Intel X520-DA2 - Not being detected/ not usable
Do the two 10Gs have drivers attached lspci -k- [PLUGIN] GPU Statistics
Will look to update in next release.- [PLUGIN] GPU Statistics
There is no background process to check. Updates are based on the GUI update that widget. You may be able to create a user script.- Nvme passtrough to VM - how to
No worries happy to help.- How can VM Windows11 Access Unraid Shares?
I dont think winfsp has ever been included in the virtio cd.- Nvme passtrough to VM - how to
Maybe try without the driver, was another post I was looking at didn't have that entry.- Nvme passtrough to VM - how to
This is correct. Will keep looking to see if there is another way. <devices> <hostdev mode='subsystem' type='pci' managed='yes'> <source> <address domain='0x0000' bus='0x04' slot='0x00' function='0x0'/> </source> <alias name='ua-test'/> </hostdev> </devices> <qemu:override> <qemu:device alias='ua-test'> <qemu:frontend> <qemu:property name='x-msix-relocation' type='string' value='bar2'/> </qemu:frontend> </qemu:device> </qemu:override>- Nvme passtrough to VM - how to
Did you save in xml page or did you revert to form view. Need to save in xml view.- Nvme passtrough to VM - how to
Looks like you cannot use the PCI ID but need to have an alias. This is unlikely to be removed if you change via the GUI. Change qemu part to be. <qemu:commandline> <qemu:arg value='-set'/> <qemu:arg value='device.nvmetest0.x-msix-relocation=bar2'/> </qemu:commandline> Save then edit and change to XML mode and add the alias to you nvme line. <hostdev mode='subsystem' type='pci' managed='yes'> ... <alias name='nvmetest0'/> </hostdev>- [PLUGIN] GPU Statistics
will update in the next release but just want to make sure on values. Can you create a file /tmp/pidcheck with the code below. The run php -f /tmp/pidcheck PID replace PID with the process ID from nvidia-smi and post the output please. <?PHP function getFullCommand(int $pid): string { $command = ''; $file = sprintf('/proc/%0d/cmdline', $pid); if (file_exists($file)) { $command = trim(@file_get_contents($file), "\0"); } return $command; } /* * Retrieves the full command of a parent process with arguments for a given process ID * * @param int $pid * @return string */ function getParentCommand(int $pid): string { $command = ''; $pid_command = sprintf('ps j %0d | awk \'{ $1=$1 };NR>1\' | cut -d \' \' -f 1', $pid); echo "$pid_command\n"; $ppid = (int)trim(shell_exec($pid_command) ?? 0); echo "Parent PID:$ppid\n"; if ($ppid > 0) { $command = getFullCommand($ppid); } return $command; } $pid = $argv[1]; echo "PID is:$pid\n"; echo "PID Info\n"; echo getFullCommand($pid); echo "\nParent for PID Info\n"; echo getParentCommand($pid)."\n"; ?>- [PLUGIN] GPU Statistics
- [PLUGIN] GPU Statistics
For which GPU and driver?- [PLUGIN] GPU Statistics
Fixed in 2025.04.27- [PLUGIN] GPU Statistics
can you edit /usr/local/emhttp/plugins/gpustat/lib/Nvidia.php and change the line for immich to be the following. Should be arroung line 68, to see if that works? 'immich' => ['/config/machine-learning/cuda',"python3","ffmpeg"],- [PLUGIN] GPU Statistics
I can reproduce will work on a fix.- igpu got lost
Create a 2nd USB drive with Stock stable Unraid 7.0.1 to see if it boots ok.- igpu got lost
I would rename vfio-pci.cfg on the flash as now may be incorrect. Plug usb into another machine and this file is in the config directory.- [PLUGIN] GPU Statistics
Cat the file and send please. Cat /tmp/gpurawdata* - SPICE Support + Config