Raspberry

Aus informatikvs
Wechseln zu: Navigation, Suche

Erste Schritte

  • Image herunterladen - Bspw. RASPBIAN JESSIE LITE
  • Image auf SD-Karte schreiben - Bspw. mit etcher
  • Anmelden Login: pi / Password: raspberry (raspberrz mit dt. Tastatur)
  • Konfigurieren: $ sudo raspi-config
4 Localisation Options Set up language and regional settings to match your location
  1 Change Locale 
    de_DE.UTF-8 UTF-8
  2 Change Timezone 
    Europe, Berlin
  3 Change Keyboard Layout
    Modell der Tastatur: Generische PC-Tastatur mit 104 tasten ;)
    Tastaturbelegung: Deutsch
    Taste AltGr: Der Standard für die Tastaturbelegung 
    Keine Compose-Taste
  4 Change Wi-Fi Country
    DE Germany
5 Interface Options
  P2 SSH Enable
7 Advanced Options
  A1 Expand Filesystem Ensures that all of the SD card storage is available to the OS
Reboot

Netzwerk

$ ip a (oder ifconfig) # -> Adresse für ETH0 auf Anhieb vorhanden
$ sudo apt-get update -y $$ sudo apt-get upgrade -y # -> Systemupdate

Remote-Verbindung

  • Herunterfahren und power-off:
 § shutdown -h 0
  • Tastatur-, Bildschirmkabel entfernen
  • Hochfahren (Stromversorgung)
  • Konsole auf entfernten Rechner öffnen
  • ggf. IP mit Ping auf Broadcast-Adresse ermitteln:
 Windows$ ping 192.168.0.255
 Linux$ ping 192.168.0.255 -b
 $ arp -a
  • Verbindung testen:
 von Windows bspw. mit Putty
 von Linux/Mac Os mittels SSH bspw. ssh pi@192.168.178.188

Software installieren