2

I have a PC running as debian server. Usually, the server is shut down until I press the power button or send a Magic Packet via WakeOnLan.

But sometimes, the server turns on alone.

How can I find out why the server turned on?

I already took a look at my syslog file: https://pastebin.com/FU207KDc but coudn't find the cause.

Rui F Ribeiro
  • 56,709
  • 26
  • 150
  • 232

1 Answers1

0

It depends on BIOS vendor and type, but in most cases you can:

dmidecode | grep "Wake-up Type"
        Wake-up Type: Power Switch

If you don't have dmidecode command, you need to install it:

apt install dmidecode

You can look at this answer to find out how to retrieve more information from your BIOS.

tifssoft
  • 591