Como desativar a suspensão automática quando fecho a tampa do laptop?

123

Estou usando o archlinux. Ele nunca é suspenso automaticamente antes de uma atualização recente do sistema (talvez eu tenha atualizado o kernel?).

Eu acho que está relacionado a laptop-mode ou acpid , então eu paro:

/etc/rc.d/laptop-mode stop
/etc/rc.d/acpid stop

Eu também edito /etc/laptop-mode/laptop-mode.conf :

ENABLE_LAPTOP_MODE_TOOLS=0

Então eu edito /etc/acpi/actions/lm_lid.sh , comentei a última linha:

# /usr/sbin/laptop_mode auto

Mas todos acima não funcionam. As linhas seguintes foram encontradas em /var/log/kernel.log (linhas não relacionadas omitidas):

Oct 23 15:29:20 localhost kernel: [18617.549098] PM: Syncing filesystems ... done.
Oct 23 15:29:20 localhost kernel: [18618.001898] PM: Preparing system for mem sleep
Oct 23 15:29:30 localhost kernel: [18618.039565] Freezing user space processes ... (elapsed 0.01 seconds) done.
Oct 23 15:29:30 localhost kernel: [18618.052596] Freezing remaining freezable tasks ... (elapsed 0.01 seconds) done.
Oct 23 15:29:30 localhost kernel: [18618.065999] PM: Entering mem sleep
Oct 23 15:29:30 localhost kernel: [18618.066167] Suspending console(s) (use no_console_suspend to debug)
Oct 23 15:29:30 localhost kernel: [18618.097917] sd 0:0:0:0: [sda] Synchronizing SCSI cache
Oct 23 15:29:30 localhost kernel: [18618.098103] sd 0:0:0:0: [sda] Stopping disk
Oct 23 15:29:30 localhost kernel: [18618.270537] snd_hda_intel 0000:00:14.2: power state changed by ACPI to D3hot
Oct 23 15:29:30 localhost kernel: [18619.274374] PM: suspend of devices complete after 1196.192 msecs
Oct 23 15:29:30 localhost kernel: [18619.274691] PM: late suspend of devices complete after 0.313 msecs
Oct 23 15:29:30 localhost kernel: [18619.440877] ohci_hcd 0000:00:14.5: wake-up capability enabled by ACPI
Oct 23 15:29:30 localhost kernel: [18619.642144] ACPI: Waking up from system sleep state S3
Oct 23 15:29:30 localhost kernel: [18620.049424] PM: noirq resume of devices complete after 333.503 msecs
Oct 23 15:29:30 localhost kernel: [18620.049852] PM: early resume of devices complete after 0.334 msecs
Oct 23 15:29:30 localhost kernel: [18622.418605] PM: resume of devices complete after 2371.906 msecs
Oct 23 15:29:30 localhost kernel: [18622.419018] PM: Finishing wakeup.
Oct 23 15:29:30 localhost kernel: [18622.419019] Restarting tasks ... done.
Oct 23 15:29:30 localhost kernel: [18622.464752] video LNXVIDEO:01: Restoring backlight state

Acho que isso não é causado por pm-susend , porque /var/log/pm-suspend.log não registra nada.

Eu não quero que meu laptop durma quando eu fechar a tampa. Como fazer isso?

Versão do kernel: 3.6.2-1-ARCH

    
por heiz 23.10.2012 / 10:05

2 respostas

150

Edite /etc/systemd/logind.conf e verifique se você tem

HandleLidSwitch=ignore

que fará ignorar a tampa sendo fechada. (Talvez seja necessário também desfazer as outras alterações feitas por você).

Então, você vai querer recarregar logind.conf para fazer as alterações entrarem em vigor (graças a Ehtesh Choudhury por apontar isso nos comentários):

systemctl restart systemd-logind

Detalhes completos sobre o Wiki do archlinux .

A página man do logind.conf também possui as informações relevantes,

   HandlePowerKey=, HandleSuspendKey=, HandleHibernateKey=,
   HandleLidSwitch=
       Controls whether logind shall handle the system power and sleep
       keys and the lid switch to trigger actions such as system power-off
       or suspend. Can be one of ignore, poweroff, reboot, halt, kexec,
       suspend, hibernate, hybrid-sleep and lock. If ignore logind will
       never handle these keys. If lock all running sessions will be
       screen locked. Otherwise the specified action will be taken in the
       respective event. Only input devices with the power-switch udev tag
       will be watched for key/lid switch events.  HandlePowerKey=
       defaults to poweroff.  HandleSuspendKey= and HandleLidSwitch=
       default to suspend.  HandleHibernateKey= defaults to hibernate.
    
por 23.10.2012 / 10:24
18

Você pode usar isso para desativar temporariamente os eventos de troca de tela:

systemd-inhibit --what=handle-lid-switch sleep 1d
    
por 26.05.2016 / 04:34