Intelligent Desktop Virtualization (IDV) for Education
Enable Wake-On-LAN – (Intel NUC)
To enable Wake-On-LAN on Intel NUC, here are the steps:
- Go to the BIOS menu, select Power, Performance and Cooling, then Secondary Power Settings, on Wake on LAN from S4/S5, select Power On – Normal Boot.
- Launch the terminal and follow the command below:
- Check NIC support for Wake-On-LAN (WOL) and the current status of WOL.
- Enable the WOL function on NIC.
- Make WOL persist after reboot.
- Type in the following content.
- Reload and enable the service.
$ sudo systemctl daemon-reload
$ sudo systemctl enable wol-enable.service
$ sudo apt install ethtool
$ sudo ethtool enp114s0
On Supports Wake-On value ends with ‘g’, it means this NIC supports WOL.
On Wake-on value as ‘d’ means WOL is currently disabled. Once WOL is enabled, it will change to 'g'
$ sudo ethtool -s enp114s0 wol g
$ sudo --preserve-env systemctl edit --force --full wol-enable.service
[Unit]
Description=Enable Wake-up on LAN
[Service]
Type=oneshot
ExecStart=/sbin/ethtool -s enp114s0 wol g
[Install]
WantedBy=basic.target