라즈베리 파이 화면 꺼짐 막기 메모
By SeukWon Kang
rpi 2에서는
/etc/xdg/lxsession/LXDE-pi/autostart 파일에
@xset s off @xset -dpms @xset s noblank
추가 하는 것으로 가능했는데 이상하게도 rpi 3에서는 통하지 않는다.
rpi 3에서는
/etc/lightdm/lightdm.conf 파일의 SeatDefaults section 에
[SeatDefaults] xserver-command=X -s 0 -dpms
을 추가하는 것으로
화면 꺼짐을 막을수 있다.
확인은 xset -q 를 실행해서 가능
xset이 설치되어 있지 않은경우 sudo apt-get install x11-xserver-utils 로 설치 가능.
http://raspberrypi.stackexchange.com/questions/2059/disable-screen-blanking-in-x-windows-on-raspbian
링크에 있는 방법중 성공한 방법 임.