5

I'm researching the Raspberry Pi features and understand that the Pi can be used to WOL other devices.

My question is can devices WOL the Pi?

Yes I know I can leave it on and running but I would like to be able to shutdown OSes and even reboot into the NOOB/ BerryBoot to switch Oses from time to time.

Can the Pi be WOL? I also plan to do this remotely.

Kendall
  • 267
  • 2
  • 3
  • 12

2 Answers2

3

The Pi does not have anything like power-down or sleep. It is active and running all the time unless you turn it off. So if it is running there is no need to "wake" it from sleep with WOL (Wake On LAN). If it is turned off by sudo poweroff, it also powers down the ehternet port thus not accessible from the network and therefore cannot be powered on again.

You still can reboot the Pi over SSH. But for selecting another OS you have to be right in front of the Pi. So I don't get the whole point.

user49015
  • 2,712
  • 17
  • 23
2

Althought the Pi can be shutdown, like any other computer. In my experience, the only way to restart it while off and connected to power is disconnect and reconnect power. Many people, don't believe the Pi can be shutdown, but that just is not true. From terminal or SSH remotely
sudo poweroff
will shutdown the Pi, or from the GUI you'll have the option of Logoff, Reboot, Shutdown, etc., but there is no WOL support. If you want to shut it down and remotely start it you'll need something else that can remotely cut/provide power like a smart plug wifi outlet. Once the Pi is off, if you turn the smart plug off and back on, the Pi will start up.
If you just want to restart the Pi
sudo reboot
works without issue with no need to disconnect power at all.

theRedBu
  • 31
  • 3