18

I tried this tutorial on the latest debian wheezy (2015-01-31) http://www.lukebrowning.com/hardware/raspberry-pi/touch-screen-chromium-kiosk-on-the-raspberry-pi/ but its not working anymore... (If I made the same thing on an older debian wheezy (2014-06). Its working fine. What I should modify?

szuniverse
  • 495
  • 1
  • 8
  • 15

1 Answers1

34

It appears there is now a different autostart file to use located in /etc/xdg/lxsession/LXDE-pi/autostart

To get Chromium to autostart follow these instructions

  1. Type

    sudo nano /etc/xdg/lxsession/LXDE-pi/autostart"
    
  2. Add the following line:

    /usr/bin/chromium --kiosk --ignore-certificate-errors --disable-restore-session-state "http://www.domain.com"
    
  3. Press Ctrl+x

  4. Press y
  5. Press Enter

Worked for me!

czerasz
  • 331
  • 1
  • 3
  • 9
Daniel T
  • 356
  • 3
  • 2