Everything posted by dmacias
-
[Plugin] IPMI for unRAID 6.1+
The dashboard should work now
-
[Plugin] IPMI for unRAID 6.1+
Should work now
-
[Plugin] IPMI for unRAID 6.1+
Should be fixed now. Only none array or non ud disks are polled with smartctl
-
unRAID 6 NerdPack - CLI tools (iftop, iotop, screen, kbd, etc.)
On Unraid 6.8 you have to install libffi also. 6.9 you don't.
-
unRAID 6 NerdPack - CLI tools (iftop, iotop, screen, kbd, etc.)
You can install any python app with pip3, setuptools and python3
-
unRAID 6 NerdPack - CLI tools (iftop, iotop, screen, kbd, etc.)
Try turning on uninstall then remove it and try installing again
-
unRAID 6 NerdPack - CLI tools (iftop, iotop, screen, kbd, etc.)
I had the same issue... re-linking/aliasing to the existing libraries (libssl.so.1.1 and libcrypto.so.1.1) fixed the issue. A simple `ls -la` helped me figure out what libraries I had... root@Tower:~# cd /usr/lib64/root@Tower:/usr/lib64# ln -s libssl.so.1.1 libssl.so.1root@Tower:/usr/lib64# ln -s libcrypto.so.1.1 libcrypto.so.1root@Tower:/usr/lib64# ldd /usr/bin/iperf3 linux-vdso.so.1 (0x00007ffe68998000) libiperf.so.0 => /usr/lib64/libiperf.so.0 (0x00001474185ba000) libssl.so.1 => /usr/lib64/libssl.so.1 (0x0000147418525000) libcrypto.so.1 => /usr/lib64/libcrypto.so.1 (0x000014741824b000) libm.so.6 => /lib64/libm.so.6 (0x00001474180fe000) libc.so.6 => /lib64/libc.so.6 (0x0000147417f19000) libz.so.1 => /lib64/libz.so.1 (0x0000147417d02000) libdl.so.2 => /lib64/libdl.so.2 (0x0000147417cfb000) libpthread.so.0 => /lib64/libpthread.so.0 (0x0000147417cd9000) /lib64/ld-linux-x86-64.so.2 (0x00001474187f2000)root@Tower:/usr/lib64# iperf3 -s-----------------------------------------------------------Server listening on 5201----------------------------------------------------------- See if the new version works
-
unRAID 6 NerdPack - CLI tools (iftop, iotop, screen, kbd, etc.)
Done
-
[Plugin] IPMI for unRAID 6.1+
OK thanks. I had used smartctl instead of hdparm because I seem to remember hdparm would spin up disks but after reading through the thread I see that it messes with kernel disk statistics too. Smartctl must do the same. I also see that disks are polled every second by emhttp which should be more than enough of an interval for fan control. So I'll use already parsed data from emhttp for array disks and smartcrl for unassigned. Should fix the problem.
-
[Plugin] IPMI for unRAID 6.1+
I assume you're using the fancontrol script. It shouldn't spin up any drives. It only checks the temp on the drive if it's not in standy. Do you have an idea how its affecting the spin down? smartctl -A -n standby /dev/sdX 2>/dev/null| grep -m 1 -i Temperature_Cel | awk '{print $10}'
-
unRAID 6 NerdPack - CLI tools (iftop, iotop, screen, kbd, etc.)
I couldn't find a binary that would work. Saw mention of a 32bit but that wouldn't work. I would just use an efi boot or dos boot
-
unRAID 6 NerdPack - CLI tools (iftop, iotop, screen, kbd, etc.)
You can install yq the same way as docker-compose. pip3 install yq. You need python3, setuptools and pip
-
unRAID 6 NerdPack - CLI tools (iftop, iotop, screen, kbd, etc.)
added
-
unRAID 6 NerdPack - CLI tools (iftop, iotop, screen, kbd, etc.)
I compiled iperf3 myself. See if it works now
-
unRAID 6 NerdPack - CLI tools (iftop, iotop, screen, kbd, etc.)
Ok. Try now. The name can't have an underscore in it.
-
unRAID 6 NerdPack - CLI tools (iftop, iotop, screen, kbd, etc.)
What version of Unraid you running?
-
unRAID 6 NerdPack - CLI tools (iftop, iotop, screen, kbd, etc.)
It probably can be installed through pip. pip3 install httpie?
-
unRAID 6 NerdPack - CLI tools (iftop, iotop, screen, kbd, etc.)
Do you have utempter installed? You need it for screen. Also ncurses-terminfo
-
unRAID 6 NerdPack - CLI tools (iftop, iotop, screen, kbd, etc.)
Updated Might show as a new package since it used to be iperf and now is iperf3
-
unRAID 6 NerdPack - CLI tools (iftop, iotop, screen, kbd, etc.)
http://sg.danny.cz/sg/sg3_utils.html Added
-
unRAID 6 NerdPack - CLI tools (iftop, iotop, screen, kbd, etc.)
Done
-
unRAID 6 NerdPack - CLI tools (iftop, iotop, screen, kbd, etc.)
I didn't realize this was a python package. Any python packages should be installed through python3, pip3 and setuptools. Just put pip3 install rdiff-backup in your go file. You may need libffi also.
-
unRAID 6 NerdPack - CLI tools (iftop, iotop, screen, kbd, etc.)
Added
-
unRAID 6 NerdPack - CLI tools (iftop, iotop, screen, kbd, etc.)
Thanks. Updated
-
unRAID 6 NerdPack - CLI tools (iftop, iotop, screen, kbd, etc.)
Look a few posts back