message at shutdown: o watchdog não parou!

12

No desligamento, geralmente recebo a mensagem

watchdog did not stop!

e, em seguida, o laptop congela após algumas outras linhas sem desligar.

Alguma ideia de como consertar isso? Recentemente aconteceu com muita frequência, geralmente quando o laptop estava ligado por algum tempo.

Estou usando o Debian 8 em um Asus UX32LA

Eu encontrei este arquivo systemd (ele mostra um conflito com o shutdown.target), se puder ajudar. Minha impressão é que o problema depende de algum problema vindo de mim tentando consertar a luz de fundo (que na verdade só funciona com o grup paramenter "acpi_osi=")

[Unit]
Description=Load/Save Screen Backlight Brightness of %i
Documentation=man:[email protected](8)
DefaultDependencies=no
RequiresMountsFor=/var/lib/systemd/backlight
Conflicts=shutdown.target  
After=systemd-readahead-collect.service systemd-readahead-replay.service     systemd-remount-fs.service
Before=sysinit.target shutdown.target

[Service]
Type=oneshot
RemainAfterExit=yes
ExecStart=/lib/systemd/systemd-backlight load %i
ExecStop=/lib/systemd/systemd-backlight save %i
    
por Reyx_0 16.12.2015 / 07:55

2 respostas

11

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 the GRUB_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ê?

    
por 16.12.2015 / 08:30
0

Estou em um computador de placa única MIO com o mesmo problema: sudo reboot ou [CTRL] + [ALT] + [DEL] leva a suspensão

watchdog did not stop

Nenhum dos itens acima funcionou para mim, mas felizmente uma combinação deles fez o trabalho:

  1. Use GRUB_CMDLINE_LINUX="reboot=bios" ( reboot=acpi não funcionou para mim)

  2. Use systemctl reboot -i para reinicializar o sistema com êxito. ( link )

por 10.10.2018 / 17:00