Inhaltsverzeichnis

Raspberry Pi

Erste Schritte

Grundeinstellungen mit raspi-config anpassen

sudo raspi-config

Update Rasbian und Raspberry Pi Firmware

sudo apt-get update && sudo apt-get upgrade
sudo apt-get install rpi-update
sudo rpi-update

Misc. Tasks

Colorize console listings for user 'root'

sudo nano ~/.bashrc

Uncomment the lines:

# You may uncomment the following lines if you want `ls' to be colorized:
 export LS_OPTIONS='--color=auto'
 eval "`dircolors`"
 alias ls='ls $LS_OPTIONS'
 alias ll='ls $LS_OPTIONS -l'
 alias l='ls $LS_OPTIONS -lA'