Grafana 사이트에 접속하여 상태를 보여줄 수 있는 컴퓨터가 없어서 라즈베리 파이 하나 남아 있는 여유분으로 이 사이트를 보기로 했다. 라즈베리 파이의 경우 항상 시작하게 하려면 다음과 같이 한다.
sudo nano /etc/xdg/lxsession/LXDE-pi/autostart
다음의 내용을 추가한다.
@xset s off
@xset -dpms
@xset s noblank
@chromium-browser --kiosk http://rcc.work:4000/
마우스 커서도 없애고 싶으면 unclutter 를 먼저 설치하고 다음의 내용을 추가한다.
@unclutter -idle 0.1 -root

Open chromium full screen on start up
I would like to set up a couple of Raspberry Pis to open automatically chromium or any other browser available to at start-up, and in full screen mode. I was wondering if any of you can help me. T…
2025-03-18 추가함
최신 버전에서는 이상하게 위의 코드가 먹히지 않는다.
일단 .bashrc 에 unclutter 와 chromium-browser –kiosk 를 실행시키도록 해서 해결하고 있다.