A linha watchdog did not stop!
é um comportamento normal. systemd
define um " watchdog de hardware " como um temporizador à prova de falhas, para Certifique-se de que, se o processo de desligamento normal congelar / falhar, o computador ainda será desligado após o período de tempo especificado. Este período de tempo é definido na variável ShutdownWatchdogSec=
no arquivo /etc/systemd/system.conf
. Aqui está a descrição dos documentos :
RuntimeWatchdogSec=, ShutdownWatchdogSec=
Configure the hardware watchdog at runtime and at reboot. Takes a timeout value in seconds (or in other time units if suffixed with "ms", "min", "h", "d", "w"). If RuntimeWatchdogSec= is set to a non-zero value, the watchdog hardware (/dev/watchdog) will be programmed to automatically reboot the system if it is not contacted within the specified timeout interval. The system manager will ensure to contact it at least once in half the specified timeout interval. This feature requires a hardware watchdog device to be present, as it is commonly the case in embedded and server systems. Not all hardware watchdogs allow configuration of the reboot timeout, in which case the closest available timeout is picked. ShutdownWatchdogSec= may be used to configure the hardware watchdog when the system is asked to reboot. It works as a safety net to ensure that the reboot takes place even if a clean reboot attempt times out. By default RuntimeWatchdogSec= defaults to 0 (off), and ShutdownWatchdogSec= to 10min. These settings have no effect if a hardware watchdog is not available.
Parece provável, como você indicou, que o problema real esteja relacionado à alteração das configurações da ACPI. As respostas em este tópico do fórum Debian sugerem o seguinte:
1) Edit the file at
/etc/default/grub
and edit theGRUB_CMDLINE_LINUX
line to look like this:GRUB_CMDLINE_LINUX="reboot=bios"
2) run:
update-grub
Se reboot=bios
não funcionar, eles sugerem tentar novamente com reboot=acpi
Algum destes trabalhos para você?