[Raspberry Pi] スクリーンのスリープを防ぐ2
以前 Raspberry Pi でスクリーンスリープを解除する方法を書いた。
[Raspberry Pi] スクリーンのスリープを防ぐ – with a Christian Wife
https://wacw.cf/2017/04/10/prevent-raspberrypi-from-sleeping/
しかし、現在の Raspbian Stretch with desktop(2018-11-13、Kernel version:4.14)で同じ方法を試してみるとうまくいかない。そもそも ~/.config/lxsession/LXDE-pi/autostart がないので、自分でファイルを作ってみたが、それでもうまくいかなかった。
そこで少し別の方法を試した。参考にしたのは以下のサイトだ。
Raspberry Pi 3Bのスリープモード解除|Pentacreation BLOG
https://www.pentacreation.com/blog/2017/07/170712.html
環境:Raspberry Pi 3 Model B、Raspbian Stretch with desktop(2018-11-13、Kernel version:4.14)
(1)/etc/xdg/lxsession/LXDE/autostart に以下を追記する。
@xset s off
@xset s noblank
@xset -dpms
(2)/etc/lightdm/lightdm.conf に以下を追記する。
[SeatDefaults]
xserver-command=X -s 0 -dpms
(3)Raspberry Pi を再起動。
これでスリープを解除できた。