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

Not saying this is best or right, but it works for me as a network check. However, this is NOT in my go file.
#!/bin/bashprintf "%s" "waiting for IP ..."while ! ping -c 1 -n -w 1 192.168.X.X &> /dev/nulldo   printf "%c" "."doneprintf "\n%s\n"  "IP is online"

Obviously change the IP to what you need to monitor, and add any actions you wish to happen at the end. This script just prints ...... until the ping returns successfully, so if the ip is never reachable, this will stall. There is no automatic escape. Think carefully about what could happen if your remote server is offline, you may want to change the logic. Perhaps a for next instead of while do.



Wondering if a better approach is just to try the sshfs mount and if it fails, handle the failure gracefully.
  • Replies 2k
  • Views 777.6k
  • 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

I've got some packages showing as "update ready" but when I click check for updates everything is up to date, how do I reset the status of these stuck packages?

I've got some packages showing as "update ready" but when I click check for updates everything is up to date, how do I reset the status of these stuck packages?
Which packages?
1 minute ago, dmacias said:
53 minutes ago, Fizzyade said:
I've got some packages showing as "update ready" but when I click check for updates everything is up to date, how do I reset the status of these stuck packages?

Which packages?

tmux, utempter, vnstat.

tmux, utempter, vnstat.
It's probably a plugin that installs a different version. I think preclear uses utempter.
3 minutes ago, dmacias said:
15 minutes ago, Fizzyade said:
tmux, utempter, vnstat.

It's probably a plugin that installs a different version. I think preclear uses utempter.

 

Humn, I did have preclear disk installed but I don't use it, so I just removed it.  It's now not listing it in the nerdpack package list, but it's still showing as update available and checking for updates does nothing.

Screenshot 2019-07-16 at 13.15.04.png

  Humn, I did have preclear disk installed but I don't use it, so I just removed it.  It's now not listing it in the nerdpack package list, but it's still showing as update available and checking for updates does nothing.

 

This plugin wasn't set up to differentiate between different build numbers for the same package version. That's the last number at the end of the package name. E.g. The 2 in utempter-1.1.6-x86_64-2.txz. Preclear uses an older build. 

 

Run this if on 6.7 otherwise change to your unraid version

upgradepkg /boot/config/plugins/NerdPack/packages/6.7/utempter-1.1.6-x86_64-2.txz

 

 

 

4 minutes ago, dmacias said:

This plugin wasn't set up to differentiate between different build numbers for the same package version. That's the last number at the end of the package name. E.g. The 2 in utempter-1.1.6-x86_64-2.txz. Preclear uses an older build.

 

Run this if on 6.7

 


upgradepkg /boot/config/plugins/NerdPack/packages/6.7/utempter-1.1.6-x86_64-2.txz
 

 

 

Cheers, that fixed it.  I installed the other two which said update available and that cleared the status on those!

 

Awesome work!

Couldn't figure out how to search this thread to find my own answer.

 

I'm surprised that rclone isn't included in Nerd Pack given it's popularity.  I have it working in a script called from my /boot/config/go file, but would prefer to not hack my own solution if it could be included as part of Nerd Pack for easier install and updating.

 

Has rclone inclusion been considered or been planned? If not, why?

 

PS - If anyone has a tip on how to search a specific thread, let me know :)

19 minutes ago, tmchow said:

PS - If anyone has a tip on how to search a specific thread, let me know

Just include site:<addressofthread> in your google search.

 

 

Thanks for all your work on this - has been invaluable to my unRAID setup!

 

Would it be possible to add ledmon to control backplane/bay HDD LEDs? Would be great to be able to turn these off at night.

In addition to rclone, what about including ffmpeg? It’s so commonly used in media server setups.

In addition to rclone, what about including ffmpeg? It’s so commonly used in media server setups.


Reclone was never added since there's a plugin and docker. Ffmpeg requires dozens of other packages which is outside the scope of this plugin. This plugin is for adding mostly stand alone packages.
Thanks for all your work on this - has been invaluable to my unRAID setup!
 
Would it be possible to add ledmon to control backplane/bay HDD LEDs? Would be great to be able to turn these off at night.
I don't find anything for slackware on this.
Reclone was never added since there's a plugin and docker. Ffmpeg requires dozens of other packages which is outside the scope of this plugin. This plugin is for adding mostly stand alone packages.
 

I have this scripted in go file to download a single tarball for static build and expanding it which is just a set of binaries:

 

Main site

Https://johnvansickle.com/ffmpeg/

 

 Example to get the latest build in a static url:

https://johnvansickle.com/ffmpeg/builds/ffmpeg-git-amd64-static.tar.xz

 

 

 

I have some issue with borg from this plugin

 

Traceback (most recent call last):
  File "/usr/bin/borg", line 6, in <module>
    from pkg_resources import load_entry_point
ModuleNotFoundError: No module named 'pkg_resources'

 

you need to install from the nerdpackage the following

image.png.94082bea9c81532cff424c19309f8b08.png

 

  • 2 weeks later...
On 7/21/2019 at 7:22 PM, tmchow said:

 

I have this scripted in go file to download a single tarball for static build and expanding it which is just a set of binaries:

 

Main site

Https://johnvansickle.com/ffmpeg/

 

 Example to get the latest build in a static url:

https://johnvansickle.com/ffmpeg/builds/ffmpeg-git-amd64-static.tar.xz

 

 

 

@dmacias any thoughts on the above given ffmpeg can be installed with a static build? This removes any issue with all the dependencies and extra libraries. Just need to download, extract and either copy to /usr/bin for example.

 

 

Absolutely love this plugin. Any plans on adding something like telegraf to it? Would be an amazing addition, and highly useful to a large portion of the community.

Absolutely love this plugin. Any plans on adding something like telegraf to it? Would be an amazing addition, and highly useful to a large portion of the community.


Why not install telegraf via docker?
1 minute ago, tmchow said:

 


Why not install telegraf via docker?

Just seems kind of an antipattern to do system monitoring from something whose entire paradigm is to be separated from the system.

Just seems kind of an antipattern to do system monitoring from something whose entire paradigm is to be separated from the system.

Sure I see that but it also makes it dead simple to install, manage and not to mention it just works :)
12 hours ago, tmchow said:


Sure I see that but it also makes it dead simple to install, manage and not to mention it just works :)

Oh i know, and i love docker for other things, but in the use case of telegraf, it would just feel dirty haha

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.