Everything posted by dmacias
-
[Plugin] IPMI for unRAID 6.1+
It returned ASRockRack. Ok you should be good to go. Just edit the boards.json.
-
unRAID 6 NerdPack - CLI tools (iftop, iotop, screen, kbd, etc.)
No problem. Glad you figured it out.
-
unRAID 6 NerdPack - CLI tools (iftop, iotop, screen, kbd, etc.)
Just run upgradepkg on this and you won't have to reboot http://slackware.cs.utah.edu/pub/slackware/slackware64-14.2/slackware64/n/openssl-1.0.2h-x86_64-1.txz
-
unRAID 6 NerdPack - CLI tools (iftop, iotop, screen, kbd, etc.)
Yes it uses curl and github api to get packages.json and to download the packages. Something is installing OpenSSL 1.0.1c, unRAID 6.2 is 1.0.2h
-
unRAID 6 NerdPack - CLI tools (iftop, iotop, screen, kbd, etc.)
I would try uninstalling then deleting /boot/config/plugins/NerdPack, then re-install
-
unRAID 6 NerdPack - CLI tools (iftop, iotop, screen, kbd, etc.)
Try Ctrl-F5 or Check for Updates. Also there should have been a pop up. Maybe that's blocked.
-
ControlR (Android/iOS app for unRAID)
That probably explains my problems too.
-
[Plugin] IPMI for unRAID 6.1+
This is what I get: ~# ipmi-sensors ID | Name | Type | Reading | Units | Event 3 | ATX+5VSB | Voltage | 5.01 | V | 'OK' 4 | +3VSB | Voltage | 3.46 | V | 'OK' 5 | Vcore1 | Voltage | 1.05 | V | 'OK' 6 | Vcore2 | Voltage | 0.86 | V | 'OK' 7 | VCCMA/B | Voltage | 1.34 | V | 'OK' 8 | VCCMC/D | Voltage | 1.35 | V | 'OK' 9 | +1.10_PCH | Voltage | 1.09 | V | 'OK' 10 | +1.50_PCH | Voltage | 1.51 | V | 'OK' 11 | VCCME/F | Voltage | 1.34 | V | 'OK' 12 | VCCMG/H | Voltage | 1.34 | V | 'OK' 13 | BAT | Voltage | 3.24 | V | 'OK' 14 | +3V | Voltage | 3.28 | V | 'OK' 15 | +5V | Voltage | 5.04 | V | 'OK' 16 | +12V | Voltage | 12.00 | V | 'OK' 17 | CPU_FAN1_1 | Fan | 3700.00 | RPM | 'OK' 18 | CPU_FAN2_1 | Fan | 3600.00 | RPM | 'OK' 19 | REAR_FAN1 | Fan | N/A | RPM | N/A 20 | REAR_FAN2 | Fan | N/A | RPM | N/A 21 | FRNT_FAN1 | Fan | N/A | RPM | N/A 22 | FRNT_FAN2 | Fan | 1900.00 | RPM | 'OK' 23 | FRNT_FAN3 | Fan | 2100.00 | RPM | 'OK' 24 | FRNT_FAN4 | Fan | 1900.00 | RPM | 'OK' 25 | CPU_FAN1_2 | Fan | N/A | RPM | N/A 26 | CPU_FAN2_2 | Fan | N/A | RPM | N/A 27 | MB Temperature | Temperature | 39.00 | C | 'OK' 28 | TR1 Temperature | Temperature | 0.00 | C | 'OK' 30 | CPU_BSP1 Temp | Temperature | 44.00 | C | 'OK' 31 | CPU_AP1 Temp | Temperature | 40.00 | C | 'OK' 32 | SATAIII_0 | Drive Slot | N/A | N/A | N/A 33 | SATAIII_1 | Drive Slot | N/A | N/A | N/A 34 | SCU_PORT_0 | Drive Slot | N/A | N/A | N/A 35 | SCU_PORT_1 | Drive Slot | N/A | N/A | N/A 36 | SCU_PORT_2 | Drive Slot | N/A | N/A | N/A 37 | SCU_PORT_3 | Drive Slot | N/A | N/A | N/A If you want to control the CPU fans you'll have to change CPU_FAN1 and CPU_FAN2 to CPU_FAN1_1 and CPU_FAN2_1 in the boards.json in /boot/config/plugins/ipmi. I think the rest of your fans should work as long as they are 4 pin PWM fans. You can test the fans using the ipmi-raw commands I described a few posts back. http://lime-technology.com/forum/index.php?topic=39787.msg500260.msg#500260 Right on! I'll try that tonight . If it is set properly, will the script stop telling me my board is not supported? Post what ipmi-fru reports? Asrock, ASRockRack?
-
[Plugin] IPMI for unRAID 6.1+
Your welcome. It should change colors too, based on temp.
-
unRAID 6 NerdPack - CLI tools (iftop, iotop, screen, kbd, etc.)
This would be outside of the scope of this plugin. This is more for single packages (even though a couple require each other). What your doing would be more suited for its own plugin. I will recompile my python 3 though. A good starting point for creating a plugin I think would be one of my smaller plugins. One I wrote for Quassel notifications seems appropriate, since it's the one I needed python 3 for. https://github.com/dmacias72/unRAID-plugins/tree/master/source/qnotify https://github.com/dmacias72/unRAID-plugins/blob/master/plugins/qnotify.plg Basically the source is just a file structure for creating a slackware package which can be installed/upgraded with upgradepkg --install-new So the emttp settings page, rc scripts and file permissions are all installed with the package. The plg file installs all the dependencies and the plugin package and executes install and remove scripts. You can pm me or create a separate thread and I can help out as much as I can.
-
unRAID 6 NerdPack - CLI tools (iftop, iotop, screen, kbd, etc.)
Were you using my version of python3? If so have you tried another available version. I compiled it myself because available versions were not compiled with openssl so calling https urls would not work. When compiling for unRAID you have to install many packages even if they are included in unpaid since the headers are stripped out. I know I didn't install sqlite3 when I compiled my version so maybe that's a problem. I could try it again. I also read you may have to specifically configure with sqlite when compiling. Also I don't believe there's a pysqlite3 for python 3, so don't waste time with pip since it will only install for python 2 or looking for a package. Let me know if you try another python 3 package and it works. I can try and recompile mine.
-
[Plugin] IPMI for unRAID 6.1+
This is what I get: ~# ipmi-sensors ID | Name | Type | Reading | Units | Event 3 | ATX+5VSB | Voltage | 5.01 | V | 'OK' 4 | +3VSB | Voltage | 3.46 | V | 'OK' 5 | Vcore1 | Voltage | 1.05 | V | 'OK' 6 | Vcore2 | Voltage | 0.86 | V | 'OK' 7 | VCCMA/B | Voltage | 1.34 | V | 'OK' 8 | VCCMC/D | Voltage | 1.35 | V | 'OK' 9 | +1.10_PCH | Voltage | 1.09 | V | 'OK' 10 | +1.50_PCH | Voltage | 1.51 | V | 'OK' 11 | VCCME/F | Voltage | 1.34 | V | 'OK' 12 | VCCMG/H | Voltage | 1.34 | V | 'OK' 13 | BAT | Voltage | 3.24 | V | 'OK' 14 | +3V | Voltage | 3.28 | V | 'OK' 15 | +5V | Voltage | 5.04 | V | 'OK' 16 | +12V | Voltage | 12.00 | V | 'OK' 17 | CPU_FAN1_1 | Fan | 3700.00 | RPM | 'OK' 18 | CPU_FAN2_1 | Fan | 3600.00 | RPM | 'OK' 19 | REAR_FAN1 | Fan | N/A | RPM | N/A 20 | REAR_FAN2 | Fan | N/A | RPM | N/A 21 | FRNT_FAN1 | Fan | N/A | RPM | N/A 22 | FRNT_FAN2 | Fan | 1900.00 | RPM | 'OK' 23 | FRNT_FAN3 | Fan | 2100.00 | RPM | 'OK' 24 | FRNT_FAN4 | Fan | 1900.00 | RPM | 'OK' 25 | CPU_FAN1_2 | Fan | N/A | RPM | N/A 26 | CPU_FAN2_2 | Fan | N/A | RPM | N/A 27 | MB Temperature | Temperature | 39.00 | C | 'OK' 28 | TR1 Temperature | Temperature | 0.00 | C | 'OK' 30 | CPU_BSP1 Temp | Temperature | 44.00 | C | 'OK' 31 | CPU_AP1 Temp | Temperature | 40.00 | C | 'OK' 32 | SATAIII_0 | Drive Slot | N/A | N/A | N/A 33 | SATAIII_1 | Drive Slot | N/A | N/A | N/A 34 | SCU_PORT_0 | Drive Slot | N/A | N/A | N/A 35 | SCU_PORT_1 | Drive Slot | N/A | N/A | N/A 36 | SCU_PORT_2 | Drive Slot | N/A | N/A | N/A 37 | SCU_PORT_3 | Drive Slot | N/A | N/A | N/A If you want to control the CPU fans you'll have to change CPU_FAN1 and CPU_FAN2 to CPU_FAN1_1 and CPU_FAN2_1 in the boards.json in /boot/config/plugins/ipmi. I think the rest of your fans should work as long as they are 4 pin PWM fans. You can test the fans using the ipmi-raw commands I described a few posts back. http://lime-technology.com/forum/index.php?topic=39787.msg500260.msg#500260
-
[Plugin] IPMI for unRAID 6.1+
Run ipmi-sensors from the command line and post the output. You probably just need to enter the current fan names in the right order in /boot/config/plugins/ipmi/boards.json.
-
[Plugin] IPMI for unRAID 6.1+
Thanks. That's the command I use in the plugin. Just wanted to make sure it wasn't me. I see where the quotes come from now. I'll strip them.
-
[Plugin] IPMI for unRAID 6.1+
Thanks, it shows up properly in the sensor report now, but still shows N/A in the dashboard.. Updated. Should work for dash and footer. Thanks! It shows up properly in all places now.. Just a small request for your next update, can you remove the ' from the display.. Right now it shows as 'Low' everywhere instead of Low Thanks again! Can you run this command for me and post the output? /usr/sbin/ipmi-sensors --output-sensor-thresholds --comma-separated-output --output-sensor-state --no-header-output --interpret-oem-data
-
[Plugin] IPMI for unRAID 6.1+
Thanks, it shows up properly in the sensor report now, but still shows N/A in the dashboard.. Updated. Should work for dash and footer. Thanks! It shows up properly in all places now.. Just a small request for your next update, can you remove the ' from the display.. Right now it shows as 'Low' everywhere instead of Low Thanks again! Ok. I'll look into that.
-
[Plugin] IPMI for unRAID 6.1+
Thanks, it shows up properly in the sensor report now, but still shows N/A in the dashboard.. Updated. Should work for dash and footer.
-
[Plugin] IPMI for unRAID 6.1+
Thanks, it shows up properly in the sensor report now, but still shows N/A in the dashboard.. Thanks, I forgot about the dashboard. I'll make the same changes to it.
-
[Plugin] IPMI for unRAID 6.1+
Updated. It should show events as readings for OEM Reserved. The footer will take a bit more work.
-
[Plugin] IPMI for unRAID 6.1+
Oh ok. So does it show low in the sensor readings page or did you want it for the footer? I already have --interpret-oem-data in the command string so it should show up in readings.
-
[Plugin] IPMI for unRAID 6.1+
I can do that and included it in the footer too. Can you run ipmi-sensors from the command line and post the output? Do you know what the exact text is? low/medium/high? root@Tower:~# ipmi-sensors ID | Name | Type | Reading | Units | Event 4 | CPU Temp | OEM Reserved | N/A | N/A | 'OEM Event = 0000h' 5 | Sys Temp | Temperature | 34.00 | C | 'OK' 6 | CPU Vcore | Voltage | 1.16 | V | 'OK' 7 | DIMM Volt | Voltage | 1.82 | V | 'OK' 8 | 3.3V | Voltage | 3.30 | V | 'OK' 9 | 5V | Voltage | 4.82 | V | 'OK' 10 | 12V | Voltage | 11.81 | V | 'OK' 11 | -12V | Voltage | -12.10 | V | 'OK' 12 | 5VSB | Voltage | 4.85 | V | 'OK' 13 | VBAT | Voltage | 3.22 | V | 'OK' 14 | Fan1 | Fan | 3000.00 | RPM | 'OK' 15 | Fan2 | Fan | 1000.00 | RPM | 'OK' 16 | Fan3 | Fan | 1000.00 | RPM | 'OK' 17 | Fan4 | Fan | 900.00 | RPM | 'OK' 18 | Fan5 | Fan | 3000.00 | RPM | 'OK' 19 | Fan6/CPU | Fan | 1400.00 | RPM | 'OK' 20 | Intrusion | Physical Security | N/A | N/A | 'OK' 21 | Power Supply | Power Supply | N/A | N/A | 'OK' 22 | Thermal Trip | Module/Board | N/A | N/A | 'OK' 23 | BIOS | System Firmware Progress | N/A | N/A | N/A And yes, it's Low, Medium and High - It was in Low when I got the output above.. cheers! Could you try again with ipmi-sensors --interpret-oem-data And if that didn't work try ipmi-sensors --interpret-oem-data --record-ids=4 Also what board?
-
[Plugin] IPMI for unRAID 6.1+
I can do that and included it in the footer too. Can you run ipmi-sensors from the command line and post the output? Do you know what the exact text is? low/medium/high?
-
ControlR (Android/iOS app for unRAID)
I get the same results. Like the info in the forms is not getting transferred to the underlying code. Can't change settings. Edit: although it does show the ip when trying to connect manually.
-
unRAID 6 NerdPack - CLI tools (iftop, iotop, screen, kbd, etc.)
Done. Not the latest without someone compiling it. But added 4.1 to unRAID 6.2 and 3.7 to 6.1
-
[Plugin] IPMI for unRAID 6.1+
Any other drives in your system besides start drives? The ipmifan script and the sensor page are two separate things. I reuse the dynamix readings for the hard drive temps and take the greatest value. The fan script checks the hard drive temps based on the frequency selected in the settings, using smartctl to get the temps, then uses the highest value also.