ethtool <device>
Im Standby für WOL, eine altes Notebook mit zwei HDD Slots
Aktuelle Leistung: 0,56 Watt
Es wäre so einfach, mal das Handbuch komplett zu lesen.
#!/bin/bash
# Start Server
# some links
# https://www.thomas-krenn.com/de/wiki/Wake_on_LAN_unter_Linux#Wake-on-LAN_aktivieren
# https://wiki.ubuntuusers.de/Wake_on_LAN/#WOL-dauerhaft-aktivieren
# https://www.myworkroom.de/p-hb:wakeonlan.proxmox
#
# Only call wakeonlan, if it's available
which wakeonlan > /dev/null || exit 0
#
# Proxmox Server lan interface und mac identifizieren
MAC="aa:bb:cc:dd:ee:ff"
#
for m in ${MAC} ; do
echo "Starte Server $m"
/usr/bin/wakeonlan $m
done
#
#!/bin/bash
# Start Server
# some links
# https://www.thomas-krenn.com/de/wiki/Wake_on_LAN_unter_Linux#Wake-on-LAN_aktivieren
# https://wiki.ubuntuusers.de/Wake_on_LAN/#WOL-dauerhaft-aktivieren
# https://www.myworkroom.de/p-hb:wakeonlan.proxmox
#
# Only call wakeonlan, if it's available
which wakeonlan > /dev/null || exit 0
#
# Proxmox Server lan interface und mac identifizieren
MAC="PC_WOL-meine-lan-MAC-adresse"
#
for m in ${MAC} ; do
echo "Starte Server $m"
/usr/bin/wakeonlan $m
done
#
We use essential cookies to make this site work, and optional cookies to enhance your experience.