-
[PLUGIN] IPMI for 6.11+
i am using a supermicro x11sca-f. though the manufacturer says Enginetech and some where product name. Is it not compatible with this plug in? i'm trying to control the board that is running opnsense on another box. it successfully connected, but no fan control tab show up. when i use override, and choose supermicro x11, it seems to work. i can hear the fans slowed down. i used it to monitor the cpu temps. is there a away without me using the override options? thanks!
-
[Plugin] IPMI for unRAID 6.1+
Hi @mergleh, May I know exactly which 3 did you change? I think I have this same problem. The fan tab is not showing. And i have this enginetech as the manufacturer. I tried editing out any Enginetech I see to Supermicro but the fan tab still doesn't show up Thanks!
-
[PLUGIN] GPU Statistics
oh very nice. looking forward to it. thanks for the reply!
-
[PLUGIN] GPU Statistics
Hi there. been using gpu stats for quite some time. great plugin. just wondering, is there no icon when unraid is in GUI Mode? thanks!
-
[Plugin] Appdata.Backup
Sorry, i did. just wanted to confirm. So for now i just remove all the nextcloud-aio group tag. Not plannining to have them back up, dont think i even can since there's nothing can be back up. there's only nextcloud-aio-mastercontainter and it created the the other nextcloud aio containers . I back them up using nextcloud itself. Thank you btw for checking it out. Will wait for an update then.
-
[Plugin] Appdata.Backup
This is enough? or would i need to upload the whole file? Debug Log ID: a0067ec4-0822-4d0e-8271-2c664f498ff4
-
[Plugin] Appdata.Backup
hi anyone know why its doing it like this? the [nextcloudaio] is the tag i created for nextcloud-aio-mastercontainer. there's no docker exactly called nextcloudaio. so its giving out an error saying there's no volume to back up
-
[Plugin] CA Appdata Backup / Restore v2.5
sorry about that. thats why it was weird for me. there's no container just called "nextcloud" what other settings should i add? thank you for your response/
-
[Plugin] CA Appdata Backup / Restore v2.5
hi there. i'm getting this warning. havent had any warning before this. this "nextcloud" is already been excluded and skip. anyone know why it still showing a warning?
-
[Support] omada-controller
-
[PLUGIN] GPU Statistics
-
Unassigned Devices - Managing Disk Drives and Remote Shares Outside of The Unraid Array
hi is it possible to add unassigned devices into the root share? example my external drive thats connected.
-
[PLUGIN] GPU Statistics
alright. will try my best to not reboot till next week if not will just wait for the next update since i already know its working. thank you so much for the help!
-
[PLUGIN] GPU Statistics
nevermind. i got it working haha. the geforce string was wrong. mine was "Geforce" instead of "GeForce" dumb mistake. though if i reboot the code will reset correct?
-
[PLUGIN] GPU Statistics
i tried followed the code. still getting same output. should i reboot? this is correct? private function getProductName (string $name) { // Some product names include NVIDIA and we already set it to be Vendor + Product Name if (stripos($name, 'NVIDIA') !== false) { $name = trim($this->stripText('NVIDIA', $name)); } // Some product names are too long, like TITAN Xp COLLECTORS EDITION and need to be shortened for fitment if (strlen($name) > 20 && str_word_count($name) > 2) { $words = explode(" ", $name); if ($words[0] == "Geforce") { array_shift($words) ; $words2 = implode(" ", $words) ; if (strlen($words2) <= 20) $this->pageData['name'] = $words2; } else $this->pageData['name'] = sprintf("%0s %1s", $words[0], $words[1]); } else { $this->pageData['name'] = $name; } }