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.

armin0012002

Members
  • Joined

  • Last visited

Solutions

  1. armin0012002's post in Persistent "Not Available" Plugin Status on Reboot was marked as the answer   
    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

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.