Difference between revisions of "RPi Debian Auto Login"

From eLinux.org
Jump to: navigation, search
(Auto StartX (Run LXDE))
(Auto StartX (Run LXDE): Add "-l" flag to su which causes this to be more like a normal login (e.g. the current directory will be the user's home, not root))
Line 21: Line 21:
 
Scroll to the bottom and add the following above exit 0:
 
Scroll to the bottom and add the following above exit 0:
  
  su pi -c startx
+
  su -l pi -c startx
  
 
(where <code>pi</code> is the username you want to run X as).  Press <code>Ctrl+X</code> to exit, <code>Y</code> to save followed by <code>Enter</code> twice.
 
(where <code>pi</code> is the username you want to run X as).  Press <code>Ctrl+X</code> to exit, <code>Y</code> to save followed by <code>Enter</code> twice.

Revision as of 08:51, 24 February 2013

This guide will show you how to login to Debian Squeeze and start LXDE by simply powering the Pi on.

Auto Login:

In Terminal:

sudo nano /etc/inittab

Scroll down to:

1:2345:respawn:/sbin/getty 115200 tty1

and change to

#1:2345:respawn:/sbin/getty 115200 tty1

Under that line add:

1:2345:respawn:/bin/login -f pi tty1 </dev/tty1 >/dev/tty1 2>&1

Ctrl+X to exit, Y to save followed by enter twice

Auto StartX (Run LXDE)

In Terminal:

sudo nano /etc/rc.local

Scroll to the bottom and add the following above exit 0:

su -l pi -c startx

(where pi is the username you want to run X as). Press Ctrl+X to exit, Y to save followed by Enter twice.

(Note: The previous method indicated that you should add startx to /etc/profile. The updated method is better, since it will cause startx to run only when necessary, and it will not launch the X server as root.)