dmacias

Community Developer
  • Posts

    2803
  • Joined

  • Last visited

  • Days Won

    6

Everything posted by dmacias

  1. No problem. Sorry it took so long. Just super busy anymore.
  2. Should be fixed now. Only none array or non ud disks are polled with smartctl
  3. On Unraid 6.8 you have to install libffi also. 6.9 you don't.
  4. You can install any python app with pip3, setuptools and python3
  5. Try turning on uninstall then remove it and try installing again
  6. 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
  7. 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.
  8. 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}'
  9. 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
  10. You can install yq the same way as docker-compose. pip3 install yq. You need python3, setuptools and pip
  11. Ok. Try now. The name can't have an underscore in it.
  12. It probably can be installed through pip. pip3 install httpie?
  13. Do you have utempter installed? You need it for screen. Also ncurses-terminfo
  14. Updated Might show as a new package since it used to be iperf and now is iperf3
  15. 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.