====== Raspian Linux ====== ===== Installation ===== Install Raspian on a SD card by following the instructions in the Raspberry Pi [[http://www.raspberrypi.org/documentation/installation/installing-images/|documentation]] pages. ===== Configuration ===== Open LXterminal on the desktop and run raspi-config to modify the following settings: * Expand Filesystem * Change User Password * Internationalisation Options -> Change Keyboard Layout * Advanced Options -> Hostname, Serial ===== 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 # usermod -G adm,dialout,cdrom,sudo,audio,video,plugdev,games,users,netdev,input,spi,gpio Check privileges are assigned correctly: # id Remove super user privileges from **Pi**: * Go to the end of sudoers file and comment out root elevation for **Pi**: # visudo #pi ALL=(ALL) NOPASSWD: ALL * Remove user pi from group sudo in /etc/group and /etc/gshadow, so that the new user remains: # vim /etc/group sudo:x:27: # vim /etc/gshadow sudo:x:27: Change autologon to the new : # vim /etc/lightdm/lightdm.conf autologin-user= ==== Links ==== * [[http://theurbanpenguin.com/wp/?p=2407|Changing the default users password and creating addtional accounts]] ===== Install Apps ===== # apt-get install vim