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


jonp

Recommended Posts

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.

Link to comment
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

 

Link to comment
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.
  • Like 1
  • Thanks 3
Link to comment
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!

Link to comment
  • 2 weeks later...

//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
Link to comment
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

Link to comment
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
Link to comment

@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
Link to comment

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

 

 

Link to comment
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.
  • Thanks 1
Link to comment
  • Squid unpinned this topic

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.