如何在 raspbian buster 上通过远程控制禁用关机/待机

如何在 raspbian buster 上通过远程控制禁用关机/待机

我最近将带有 raspbian stretch 的 raspberry pi 3 升级到了带有 raspbian buster 的 pi 4。现在,和以前一样,我也有一个通过 USB 连接的遥控器,我用它来thd连接某些家庭自动化操作。

然而,自从升级到 pi4/buster 后,遥控器上的电源按钮现在会关闭我的树莓派!

我该如何禁用此功能?我完全无法在 Google 上找到这个问题,我找到的都是有关如何执行此操作的指南侏儒,但是我正在运行没有任何桌面的 raspbian lite(无头)。

那么我怎样才能让树莓派忽略遥控器的电源按钮呢?

答案1

这对我有用:

https://www.raspberrypi.org/forums/viewtopic.php?f=66&t=261257&p=1591568#p1591568

sudo nano /etc/systemd/logind.conf

搜索行

#HandlePowerKey=WhateverTheValueWasBefore

将其更改为

HandlePowerKey=ignore

并重新启动 systemd-logind

sudo systemctl restart systemd-logind

相关内容