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.

[PLUG-IN] NerdTools

Featured Replies

On 10/14/2022 at 10:47 AM, Beta said:

Hi, thanks for bringing this back to unraid 6.11! :)

 

I would like to request for cksfv to be added, thanks!

 

Please add

cksfv

 

It was in the old NerdPack and would be awesome to have it on unRAID 6.11 again :D

  • Replies 690
  • Views 228.6k
  • Created
  • Last Reply

Top Posters In This Topic

Most Popular Posts

  • Since this plugin is depreciated I've started to build my own Slackware packages using SlackBuild scripts.  They are being uploaded to a github repository for anyone to use.  Send me a message if you

  • Unraid is slackware, so let's use a slackware package.   # Download libffi from slackware.uk to /boot/extra: wget -P /boot/extra/ https://slackware.uk/slackware/slackware64-15.0/slackware64/l/

  • Sorry but this tutorial is completely incorrect.   Why should I create a plugin that has files missing (sources.list) and you need to manually create or check the files with another script?

Posted Images

Hi All.

 

Thank you for adding this plugin.

 

Could you please add mcelog to the list of available packages?

 

Thank you.

28 minutes ago, Darryn said:

Could you please add mcelog to the list of available packages?

It's built in to unraid AFAIK

I can confirm the libffi.so.7 error as well. When running "pip install docker-compose" the issue happens as well.

 

You don't have to build it yourselves though, just download the .deb from the Ubuntu Archive and extract it http://archive.ubuntu.com/ubuntu/pool/main/libf/libffi/libffi7_3.3-4_amd64.deb

 

Like this:

# create a dir for extraction
mkdir libffi7
# change into dir
cd libffi7
# download libffi7
wget http://archive.ubuntu.com/ubuntu/pool/main/libf/libffi/libffi7_3.3-4_amd64.deb
# extract deb file (you need to install binutils for the ar command!)
ar x libffi7_3.3-4_amd64.deb
# extract the data.tar.xz
tar -xf data.tar.xz
# secure copy the files to your unraid host (change unraid.local to whatever your unraid host is or use the IP)
scp usr/lib/x86_64-linux-gnu/* [email protected]:/usr/lib64/

 

Edited by shawly

On 11/9/2022 at 1:20 PM, shawly said:
you need to install binutils for the ar command!

great, now how do I add this? It doesn't appear to be part of nerd tools either

 

EDIT: nevermind, I found un-get (by ich777) to install it

Edited by rcm024

Requesting bluez support for Bluetooth usage.

Edited by Hurde

On 11/9/2022 at 10:20 AM, shawly said:

I can confirm the libffi.so.7 error as well. When running "pip install docker-compose" the issue happens as well.

 

You don't have to build it yourselves though, just download the .deb from the Ubuntu Archive and extract it http://archive.ubuntu.com/ubuntu/pool/main/libf/libffi/libffi7_3.3-4_amd64.deb

 

Like this:

...

 

Unraid is slackware, so let's use a slackware package.

 

# Download libffi from slackware.uk to /boot/extra:
wget -P /boot/extra/ https://slackware.uk/slackware/slackware64-15.0/slackware64/l/libffi-3.3-x86_64-3.txz

# Install the package:
installpkg /boot/extra/libffi-3.3-x86_64-3.txz

 

Once you have the package placed into /boot/extra it will be re-installed as needed each time you boot. During boot, Unraid installs all the packages I have in /boot/extra except this one (my best guess is because it thinks it's superseded by libffi-3.4.4 bundled with base Unraid install, provides libffi.so.8 instead of libffi.so.7). You'll probably need to invoke the "installpkg ..." command after every reboot, e.g. by adding it to your /boot/config/go file.   

 

I don't know if Nerd Tools will remove/replace outdated packages that have been manually downloaded, so leave yourself a reminder to check on this after libffi is added to nerd tools to make sure you're not hanging on to an outdated version.

Edited by u.stu
correction to reboot behavior

On 10/15/2022 at 2:51 AM, Boojah said:

Seconded!

I had to manually install rar2fs and the old dependency on rar 5.8.5 from the nerdpack repository to get my jellyfin instance up and running again :P

Its great having a new alternative though!

Thirded ?
Requested it on github as well. 

Can you please add nnn

Hi, i was wondering if there was a place where i can see/track the current list of packages for nerdtools? I'm hanging back on 6.10 with the older 'nerdpack' until a few of the packages that i rely on are added to nerdtools. is there a list of packages on github or similar?

Edited by thestraycat

32 minutes ago, thestraycat said:

Hi, i was wondering if there was a place where i can see/track the current list of packages for nerdtools? I'm hanging back on 6.10 with the older 'nerdpack' until a few of the packages that i rely on are added to nerdtools. is there a list of packages on github or similar?

 

https://github.com/UnRAIDES/unRAID-NerdTools/tree/main/packages/6.11

Hi would it be possible to add 

stunnel 

?

 

I did install it manual: 
 

wget https://slackware.uk/slackware/slackware64-15.0/slackware64/n/stunnel-5.62-x86_64-1.txz
upgradepkg --install-new stunnel-5.62-x86_64-1.txz

 

Edited by Secarius

Hi, would be possible to add mp3fs ? Should be of great interest to all music collectors using unraid 

It's a fuse filesystem transcoding on the fly

 

https://khenriks.github.io/mp3fs/

On 11/6/2022 at 10:46 PM, whiskeykilo said:

+1 for mosh

I'm also here to beg for mosh. Not sure if it was part of nerdpack or devpack before but I'd love for it to come back.

Hello,

 

please could SOCAT be added? I think someone else also asked a few pages ago.

 

would be much appreciated! 
 

thanks, Mark 

On 11/18/2022 at 6:56 PM, u.stu said:

 

Unraid is slackware, so let's use a slackware package.

 

# Download libffi from slackware.uk to /boot/extra:
wget -P /boot/extra/ https://slackware.uk/slackware/slackware64-15.0/slackware64/l/libffi-3.3-x86_64-3.txz

# Install the package:
installpkg /boot/extra/libffi-3.3-x86_64-3.txz

 

Once you have the package placed into /boot/extra it will be re-installed as needed each time you boot.

 

I don't know if Nerd Tools will remove/replace outdated packages that have been manually downloaded, so leave yourself a reminder to check on this after libffi is added to nerd tools to make sure you're not hanging on to an outdated version.

Is there something else you need to do to have it installed on boot? I have done this and it doesn't get installed on boot. I have to manually install the package. 

Edited by ptirmal

Would it be possible to add SnapRAID? I managed to compile 11.5 on a Slackware VM a couple of years ago and copy the binary but I didn't document it and now I'm a few version behind. Thanks!

Could you add in sedutil suite?  It was in the old version, and is needed so we can remove protection on SAS hard drives so they can be used in unraid.  Thank you!

Would really love it if bluez can be added for bluetooth usage as it was also available in nerdpack.

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...

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.