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.

Wake from Hibernation Notification

Featured Replies

I have my Windows 11 VM setup so that I can hibernate it on UNRAID 6.11.5. Is there a way to use a helper script (or something else) that will start a VM and then give you a notification when the VM is at the login screen with an IP and is ready for RDP? Just a little time saver instead of guessing when it is ready for RDP.

If pinging an IP is enough, I use a script to determine when my firewall has completed booting and runs other actions. You could modify this to send notification when an IP starts responding.

 

#!/bin/bash
printf "%s" "waiting for pfSense ..."
# Change IP to match an address controlled by pfSense.
# I recommend pfSense internal gateway or some address guaranteed to be up when pfSense is finished loading.
# I don't use external IP's because I want my internal network and appliances to be fully available
# whether the internet is actually connected or not.
while ! ping -c 1 -n -w 1 192.168.1.1 &> /dev/null
do
    printf "%c" "."
done
printf "\n%s\n"  "pfSense is back online"
virsh start VMName1
# Insert optional delay to stagger VM starts
#sleep 30
virsh start VMName2

 

 

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.