Table of Contents

Raspian Linux

Installation

Install Raspian on a SD card by following the instructions in the Raspberry Pi documentation pages.

Configuration

Open LXterminal on the desktop and run

raspi-config

to modify the following settings:

Default User

The default is user Pi with root privileges and without password. First, login as root and assign root a password.

Add a new user, assign this user the same privileges as pi:

# adduser <user>
# usermod -G adm,dialout,cdrom,sudo,audio,video,plugdev,games,users,netdev,input,spi,gpio <user>

Check privileges are assigned correctly:

# id <user>

Remove super user privileges from Pi:

Change autologon to the new <user>:

# vim /etc/lightdm/lightdm.conf
autologin-user=<user>

Install Apps

# apt-get install vim