Cheatography
https://cheatography.com
Merkhilfen zur Einrichtung des Raspberry Pi
This is a draft cheat sheet. It is a work in progress and is not finished yet.
Modelle
Modell A |
Kennzeichen: Ohne LAN Anschluss |
Modell B |
Kennzeichen: Mit LAN Anschluss |
Images
Raspbian (2012-12-16-wheezy-raspbian.zip)
vollständiges System (für Anfänger)
Login: pi Passwort: raspberry
archlinux (archlinux-hf-2013-01-22.zip)
minimales System (für Experten)
Login: root Passwort: root |
SD neu formatieren VORSICHT !!!
gparted starten und oben rechts die SD Karte auswählen
Alle Partitionen auf der SD Karte entfernen. |
Bitte alles genau lesen - wird evtl. Euer Hostrechner unbrauchbar !!!
Image auf SD Karte kopieren
sudo dd bs=1M if=<File>.img of=/dev/sdb
|
Ausprobiert auf einem Laptop mit Ubuntu 14.04 in Verbindung mit einem Raspberry Model B.
/dev/sdb war das Device des Laptops für die SD Karte.
Konfiguration
raspi-config (nur bei sweezy verfügbar)
1. Expand root partition
2.Tastatur Layout: 105 generic, other, german, default, no compose key
3. Locale de_DE.UTF-8
4. Zeitzone: Europe/Berlin |
Pakete verwalten
apt-get update
apt-get install <paketname>
|
Kommandos auf dem Raspberry Pi
Herunterfahren |
sudo shutdown -h now |
Window System starten |
startx |
Konsolen wechseln
Cntl+Alt + F1 (F1-F6 sind Textkonsolen)
Cntl+Alt + F7 (X-Windowsystem) |
BitCoin Core Client installieren
sudo apt-get install build-essential
sudo apt-get install libtool autotools-dev autoconf
sudo apt-get install libssl-dev
#Client herunterladen und entpacken
https://github.com/bitcoin/bitcoin/releases/tag/v0.9.3
# Im entpackten Verzeichnis ausführen
./autogen.sh
./configure
make
|
|
|
Wifi Config Varianten
>sudo vi /etc/wpa_supplicant.conf
#
# Please see /usr/share/doc/wpasupplicant/wpa_supplicant.conf.gz
# for more complete configuration parameters.
#
ctrl_interface=/var/run/wpa_supplicant
ctrl_interface_group=0
eapol_version=2
ap_scan=1
fast_reauth=1
country=NL
### Associate with any open access point
### Scans/ESSID changes can be done with wpa_cli
network={
ssid=""
key_mgmt=NONE
priority=1
}
# WEP
network={
ssid="ubuntuwifi"
scan_ssid=1
key_mgmt=NONE
wep_key0="OpenSesame"
wep_key1="OpenOtherSesame"
# Use the correct key..
wep_tx_keyidx=0
priority=5
}
# WPA/WPA2
network={
ssid="ubuntuwifi"
scan_ssid=1
psk=24f87a7583001eb7cea2394bbdb04eb2d3641f0b907dd31bd286be628c1841f8
priority=5
## The configuration items listed below do not need to be set, the defaults are
## pretty 'let us do it for you'.
## See /usr/share/doc/wpasupplicant/wpa_supplicant.conf.gz for more information.
# key_mgmt=WPA-PSK
# proto=WPA RSN
# pairwise=CCMP TKIP
# group=CCMP TKIP
} |
WiFi Konfiguration
1. startx
2. Konfiguration WLAN über WiFi Config |
|