Skip to content
View in the app

A better way to browse. Learn more.

Unraid

A full-screen app on your home screen with push notifications, badges and more.

To install this app on iOS and iPadOS
  1. Tap the Share icon in Safari
  2. Scroll the menu and tap Add to Home Screen.
  3. Tap Add in the top-right corner.
To install this app on Android
  1. Tap the 3-dot menu (⋮) in the top-right corner of the browser.
  2. Tap Add to Home screen or Install app.
  3. Confirm by tapping Install.

unRAID 6 NerdPack - CLI tools (iftop, iotop, screen, kbd, etc.)

Featured Replies

31 minutes ago, dmacias said:

What version of Unraid you running?

6.8.3 and the plugin is up to date (i update nightly)

 

*edit* the plugin version says 2019.12.31, is that correct?

Edited by Dephcon

  • Replies 2k
  • Views 777k
  • Created
  • Last Reply

Top Posters In This Topic

Most Popular Posts

  • EDIT: Nerdtools is now available as a replacement, you might want to check that first: Some tools like iperf3 and perl are now included in the base unraid release, hence them not being present i

  • Lol, are we going to petition the willy wonka company to change the name of their candy too?  I guess its not a big deal to change the name, I just have to laugh at the thought of someone honestly bei

  • Reason why it's not marked as being incompatible and it hasn't been said point blank that it's going to disappear is because the deadline for this to happen is when 6.11 stable is released.  

Posted Images

6.8.3 and the plugin is up to date (i update nightly)
 
*edit* the plugin version says 2019.12.31, is that correct?
Ok. Try now. The name can't have an underscore in it.
7 minutes ago, dmacias said:
13 minutes ago, Dephcon said:
6.8.3 and the plugin is up to date (i update nightly)
 
*edit* the plugin version says 2019.12.31, is that correct?

Ok. Try now. The name can't have an underscore in it.

awesome, it works! thank you.

When attempting to run iperf3 I'm getting the following error:

"error while loading shared libraries: libssl.so.1..." 

How can I add the requisite libraries?  TIA

On 7/9/2020 at 2:37 PM, clintSoutwood said:

When attempting to run iperf3 I'm getting the following error:

"error while loading shared libraries: libssl.so.1..." 

How can I add the requisite libraries?  TIA

iperf3-3.7-x86_64-1_slonly.txz671124091_Screenshot_2020-07-11SuperNovaNerdPack.thumb.png.9bdf03fb2dc684bc54f4666a47ba479f.png

root@SuperNova:~# ldd /usr/bin/iperf3
        linux-vdso.so.1 (0x00007fff9afd8000)
        libiperf.so.0 => /usr/lib64/libiperf.so.0 (0x000014647b3a5000)
        libssl.so.1 => not found
        libcrypto.so.1 => not found
        libm.so.6 => /lib64/libm.so.6 (0x000014647b258000)
        libc.so.6 => /lib64/libc.so.6 (0x000014647b073000)
        /lib64/ld-linux-x86-64.so.2 (0x000014647b5de000)
        libssl.so.1 => not found
        libcrypto.so.1 => not found

 

Quote

When attempting to run iperf3 I'm getting the following error:

"error while loading shared libraries: libssl.so.1..." 

How can I add the requisite libraries?  TIA

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.1
root@Tower:/usr/lib64# ln -s libcrypto.so.1.1 libcrypto.so.1
root@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
-----------------------------------------------------------

 

Edited by jakebg313
Needed to quote original issue.

5 hours ago, jakebg313 said:

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.1
root@Tower:/usr/lib64# ln -s libcrypto.so.1.1 libcrypto.so.1
root@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
-----------------------------------------------------------

 

Worked like a charm.  Many thanks!

  • 2 weeks later...

Would it be possible to add sas2flash for HBAs?

//edit:

Sorry, nevermind. This helped me:

 

//original:

I wanted to install iperf3 but I am getting a problem executing it after installation:

root@Unraid ~# iperf3
iperf3: error while loading shared libraries: libssl.so.1: cannot open shared object file: No such file or directory

Plugin version 2019.12.31, Unraid 6.8.3

Edited by Henning

On 7/9/2020 at 3:37 PM, clintSoutwood said:

When attempting to run iperf3 I'm getting the following error:

"error while loading shared libraries: libssl.so.1..." 

How can I add the requisite libraries?  TIA

I compiled iperf3 myself. See if it works now

Would it be possible to add sas2flash for HBAs?

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 

 

 

 

Could you please update to the latest version of ncdu? Current version 1.12 that I can see is from August 2016, and 1.13 adds the nice --color flag option for dark terminal windows. Thanks!

Could you please update to the latest version of ncdu? Current version 1.12 that I can see is from August 2016, and 1.13 adds the nice --color flag option for dark terminal windows. Thanks!
Done
Worked like a charm.  Many thanks!
When attempting to run iperf3 I'm getting the following error:
"error while loading shared libraries: libssl.so.1..." 
How can I add the requisite libraries?  TIA
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-----------------------------------------------------------

 

iperf3-3.7-x86_64-1_slonly.txz671124091_Screenshot_2020-07-11SuperNovaNerdPack.thumb.png.9bdf03fb2dc684bc54f4666a47ba479f.png
root@SuperNova:~# ldd /usr/bin/iperf3       linux-vdso.so.1 (0x00007fff9afd8000)       libiperf.so.0 => /usr/lib64/libiperf.so.0 (0x000014647b3a5000)       libssl.so.1 => not found       libcrypto.so.1 => not found       libm.so.6 => /lib64/libm.so.6 (0x000014647b258000)       libc.so.6 => /lib64/libc.so.6 (0x000014647b073000)       /lib64/ld-linux-x86-64.so.2 (0x000014647b5de000)       libssl.so.1 => not found       libcrypto.so.1 => not found

 

See if the new version works
I am trying to update par2cmdline and I am getting "par2cmdline-0.8.0 package missing!"  Am I doing something wrong?
Try turning on uninstall then remove it and try installing again

Do you guys think you could add bpytop (the new python port of bashtop)? The author recommends everyone migrate from bashtop to bpytop. 

Do you guys think you could add bpytop (the new python port of bashtop)? The author recommends everyone migrate from bashtop to bpytop. 
You can install any python app with pip3, setuptools and python3

@jonp

 

Could you please add a "description" line to the name column and add more command names top it if useful?

 

Example:

1789263288_2020-08-1000_15_36.png.fee85f399f575aaa94aa03f71f7cd897.png

 

I searched for iostat and it took a while to find out that it is part of the sysstat package ;)

 

Maybe you could provide an xml/text file with all the package names and descriptions so we can all help adding proper descriptions.

Edited by mgutt

In the meantime, perhaps provide a LetMeGoogleThatForYou on the package name link?

BORG:

 

is this normal? Installed version 1.1.3

 

root@NAS-UNRAID-BKP:~# borg

Traceback (most recent call last):

  File "/usr/lib64/python3.8/site-packages/borg/archiver.py", line 41, in <module>

    from .archive import Archive, ArchiveChecker, ArchiveRecreater, Statistics, is_special

  File "/usr/lib64/python3.8/site-packages/borg/archive.py", line 20, in <module>

    from . import xattr

  File "/usr/lib64/python3.8/site-packages/borg/xattr.py", line 9, in <module>

    from ctypes import CDLL, create_string_buffer, c_ssize_t, c_size_t, c_char_p, c_int, c_uint32, get_errno

  File "/usr/lib64/python3.8/ctypes/__init__.py", line 7, in <module>

    from _ctypes import Union, Structure, Array

ImportError: libffi.so.7: cannot open shared object file: No such file or directory

 

 

BORG:
 
is this normal? Installed version 1.1.3
 
root@NAS-UNRAID-BKP:~# borg
Traceback (most recent call last):
  File "/usr/lib64/python3.8/site-packages/borg/archiver.py", line 41, in
    from .archive import Archive, ArchiveChecker, ArchiveRecreater, Statistics, is_special
  File "/usr/lib64/python3.8/site-packages/borg/archive.py", line 20, in
    from . import xattr
  File "/usr/lib64/python3.8/site-packages/borg/xattr.py", line 9, in
    from ctypes import CDLL, create_string_buffer, c_ssize_t, c_size_t, c_char_p, c_int, c_uint32, get_errno
  File "/usr/lib64/python3.8/ctypes/__init__.py", line 7, in
    from _ctypes import Union, Structure, Array
ImportError: libffi.so.7: cannot open shared object file: No such file or directory
 
 
On Unraid 6.8 you have to install libffi also. 6.9 you don't.
Guest
This topic is now closed to further replies.

Account

Navigation

Search

Search

Configure browser push notifications

Chrome (Android)
  1. Tap the lock icon next to the address bar.
  2. Tap Permissions → Notifications.
  3. Adjust your preference.
Chrome (Desktop)
  1. Click the padlock icon in the address bar.
  2. Select Site settings.
  3. Find Notifications and adjust your preference.