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.

Persistent "Not Available" Plugin Status on Reboot

Featured Replies

On every single reboot, all plugins (Community Applications, FanCtrl, etc.) show "Not Available." * If I click "Check for Updates" manually, they all turn Green instantly.

  • I have tried a total Nuke/Fresh Install of the OS, and the issue persists.

  • I have tried adding sleep 60 and NETWORK_TIMEOUT="60" to my /boot/config/go and network.cfg, but the OS still tries to verify plugins before the Deco 6E finishes the 2.5GbE/10GbE handshake.

armin-diagnostics-20260329-2313.zip

Solved by armin0012002

This is pretty much how it has worked for me for years.

  • Author
  • Solution

The Solution: The "RAM Maneuver"

Move the logic to a separate script, copy it to RAM at boot to "unlock" it, and use a watchdog to wait for the internet.

1. Create /boot/config/watchdog.sh:

#!/bin/bash
(
    for i in {1..30}; do
        if ping -c 1 8.8.8.8 &> /dev/null; then
            sleep 15 # Let DNS settle
            /usr/local/sbin/plugin checkall
            break
        fi
        sleep 10
    done
) &
# Load Fan Drivers
modprobe nct6775 ignore_resource_conflict=1 && /usr/bin/sensors -s		

2. Update /boot/config/go to trigger it:

#!/bin/bash
/usr/local/sbin/emhttp &
ulimit -n 65535

# Copy to RAM to bypass Flash Drive permission limits
cp /boot/config/watchdog.sh /usr/local/bin/watchdog.sh
chmod +x /usr/local/bin/watchdog.sh
/usr/local/bin/watchdog.sh
48 minutes ago, armin0012002 said:

The Solution: The "RAM Maneuver"

Move the logic to a separate script, copy it to RAM at boot to "unlock" it, and use a watchdog to wait for the internet.

1. Create /boot/config/watchdog.sh:

#!/bin/bash
(
    for i in {1..30}; do
        if ping -c 1 8.8.8.8 &> /dev/null; then
            sleep 15 # Let DNS settle
            /usr/local/sbin/plugin checkall
            break
        fi
        sleep 10
    done
) &
# Load Fan Drivers
modprobe nct6775 ignore_resource_conflict=1 && /usr/bin/sensors -s		

2. Update /boot/config/go to trigger it:

#!/bin/bash
/usr/local/sbin/emhttp &
ulimit -n 65535

# Copy to RAM to bypass Flash Drive permission limits
cp /boot/config/watchdog.sh /usr/local/bin/watchdog.sh
chmod +x /usr/local/bin/watchdog.sh
/usr/local/bin/watchdog.sh

Do you have plugin notification update set in notifications?

  • Author
1 hour ago, SimonF said:

Do you have plugin notification update set in notifications?

no do i need to?

2 hours ago, armin0012002 said:

no do i need to?

That will check the status and update is there are pending updates

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.