Everything posted by SimonF
-
HA + Sonoff ZBDongle-E + Skyconnect Sticks in der gleichen VM = nicht möglich?
Yes it both devices have the same name you can do at a port level. but both have different serial numbers so should be able to use name also.
-
[PLUGIN] Tasmota Power Monitor
-
[PLUGIN] GPU Statistics
Can you touch /tmp/gpustatapps it should create a file called /tmp/gpuappsint cat you cat and post the data? Apps have to be coded within the app not related to kernel
-
Intel ARC B580 Pasthrough
-
Where are Unraid VM snapshots stored?
The snapshot implementation does not create a full copy of the disk image. It creates a QCOW2 overlay in the same dir as the disk. It is not possible to create a snapshot via script/Cmdline currently. The database for snapshots is stored in /etc/libvirt/qemu/snapshotdb/VM name/ Planned for a future release to provide backups, but not in scheduled timeline as yet.
-
[PLUGIN] Tasmota Power Monitor
Example View. I can add IP add an option for a description to show on the top line next to usage? I have not been able to test with data. Here is a test package, copy to your system and run installpkg path tasmotapm-2025.03.16-x86_64.txz
-
[PLUGIN] Tasmota Power Monitor
Will allow 3 to start with, Does anyone have sample data they can supply? http://IP/cm?cmnd=Status%208 This is for no user + password
-
[PLUGIN] GPU Statistics
What is the output of timeout -k .500 .400 intel_gpu_top -J -s 250
-
[PLUGIN] GPU Statistics
OK thanks. Will make an update tomorrow with code changes if I don't find any issues with it.
-
[PLUGIN] GPU Statistics
You need to be on 2023.03.12 for this file to work. For files cat /tmp/gpu* and post data. Main.php
-
[PLUGIN] GPU Statistics
If I send the file are you able replace the existing.
-
[PLUGIN] GPU Statistics
protected function getKernelDriver2(string $pciid) { $driver = ''; if (is_link('/sys/bus/pci/devices/'.$pciid.'/driver')) { $strLink = @readlink('/sys/bus/pci/devices/'.$pciid.'/driver'); if (!empty($strLink)) { $driver = basename($strLink); } } return $driver; } Top is this ^ will be called protected function getKernelDriver( just add a 2. Then paste this after. protected function getKernelDriver(string $pciid): string { $command = "udevadm info --query=property --path=/sys/bus/pci/devices/$pciid | grep 'DRIVER='"; $output = shell_exec($command); return $output ? trim(str_replace('DRIVER=', '', $output)) : ''; } ctlr s to save ctlr x to exit
-
[PLUGIN] GPU Statistics
Sorry typo should be local.
-
[PLUGIN] GPU Statistics
Are you able to edit i.e. nano /usr/locat/emhttp/plugins/gpustat/lib/Main.php, update the first function to have a 2 and then add a replacement function to see if that fixes the issue. protected function getKernelDriver2(string $pciid) { $driver = ''; if (is_link('/sys/bus/pci/devices/'.$pciid.'/driver')) { $strLink = @readlink('/sys/bus/pci/devices/'.$pciid.'/driver'); if (!empty($strLink)) { $driver = basename($strLink); } } return $driver; } protected function getKernelDriver(string $pciid): string { $command = "udevadm info --query=property --path=/sys/bus/pci/devices/$pciid | grep 'DRIVER='"; $output = shell_exec($command); return $output ? trim(str_replace('DRIVER=', '', $output)) : ''; }
-
[PLUGIN] GPU Statistics
Can you post the gpu* files from /tmp ?
-
VM Manager Feature requests
Hi @Pri It is something we have been thinking about, but challenge is that libvirt only stores the PCI ID and does not include any vendor product information. I was thinking that we should store the last lspci values at reboot/power off so if hardware as been changed make the VM as not being able start if it contains a PCI ID that now has a different vendor/product. Could include updating devices or maybe suggest new ID. I guess you meant PCIID rather than IOMMU group as only would be an issue if the device was put into a new IOMMU group that had other cards.
-
[PLUGIN] LCD_Manager
The module should is included in /lib/lcdproc. https://lcdproc.sourceforge.net/docs/lcdproc-0-5-5-user.html#imonlcd-howto Do you know which version of the device you have?
-
[PLUGIN] GPU Statistics
When you see unparseable can you move off the Dashboard so it does not refresh and provide the 3 files from /tmp/gpu*
-
[PLUGIN] GPU Statistics
What are your timers set to?
-
[PLUGIN] Tasmota Power Monitor
So each one will be in a new panel like GPU stat?
-
[PLUGIN] GPU Statistics
Works on my system as expected. Where you on the dashboard page for it to refresh and create the file? root@computenode:~# cd /tmp root@computenode:/tmp# ls gpu* gpuappsint gpudata0000:00:02.0 gpujson gpurawdata0000:00:02.0 gpustatapps root@computenode:/tmp# cat gpuappsint found app qemu qemu root@computenode:/tmp# cat gpustatapps root@computenode:/tmp# ls -l gpu* -rw-r--r-- 1 root root 21 Mar 14 19:19 gpuappsint -rw-r--r-- 1 root root 802 Mar 14 19:19 gpudata0000:00:02.0 -rw-r--r-- 1 root root 4232 Mar 14 19:19 gpujson -rw-r--r-- 1 root root 3566 Mar 14 19:19 gpurawdata0000:00:02.0 -rw-rw-rw- 1 root root 0 Mar 14 18:37 gpustatapps root@computenode:/tmp# Could you post gpudata0000:00:02.0
-
[PLUGIN] GPU Statistics
If you touch /tmp/gpustatapps then it will create /tmp/gpuappsint if you send I can look at adding the apps.
-
[PLUGIN] GPU Statistics
Xvnc and obsidian I don't think are in the apps list. But if no values in top then gui will not show.
-
[PLUGIN] GPU Statistics
What does intel_gpu_top show,
-
Need help with Intel Arc A310 and Unraid!
Can you post diagnostics please