Skip to content

Software

Thomas Brühl edited this page Jul 29, 2018 · 5 revisions

Alles über die Software...

microSD Karte mit OS vorbereiten

Konfiguration

  • Anmelden mit User "pi" und Passwort "raspberry" (Achtung US Keyboard Layout)

Terminal

Keyboard Layout konfigurieren

  • sudo nano /etc/default/keyboard
  • Folgende Einträge editieren:
    XKBLAYOUT="de"
    Press CTRL-X, then Y then ENTER to save the changes.

Schriftgröße konfigurieren

  • sudo nano /etc/default/console-setup
  • Folgende Einträge editieren:
    FONTFACE="Terminus"
    FONTSIZE="16x32"
    Press CTRL-X, then Y then ENTER to save the changes.

Änderungen anwenden

  • To apply these new settings to your command prompt without rebooting you can run the following command :
    sudo /etc/init.d/console-setup restart

Hostname ändern

Hostname Datei ändern

  • sudo nano /etc/hostname
    raspberrypi durch wordcamptv-ds1 ersetzen
    Press CTRL-X, then Y then ENTER to save the changes.

Hosts Datei ändern

  • sudo nano /etc/hosts
    raspberrypi durch wordcamptv-ds1 ersetzen
    Press CTRL-X, then Y then ENTER to save the changes.

Benutzer

pi Passwort ändern

  • passwd
    Changing password for pi.
    (current) UNIX password: raspberry
    Enter new UNIX password: WordCampTV
    Retype new UNIX password: WordCampTV
    passwd: password updated successfully

pictures anlegen

  • sudo adduser pictures
    ...
    Enter new UNIX password: WordCampTVpictures
    Retype new UNIX password: WordCampTVpictures
    ...
    Full Name []: ENTER
    Room Number []: ENTER
    Work Phone []: ENTER
    Home Phone []: ENTER
    Other []: ENTER
    Is the information correct? [Y/n] ENTER
  • Da pictures später Zugriff auf den Videoausgang haben soll (/dev/fb0), muss er der Gruppe video hinzugefügt werden:
    sudo adduser pictures video
  • sudo nano /etc/wpa_supplicant/wpa_supplicant.conf
    Am Ende der Datei folgenden Zeilen einfügen:
    network={
    ssid="testing"
    psk="testingPassword"
    }
    Press CTRL-X, then Y then ENTER to save the changes.
  • Änderungen auf Interface anwenden:
    wpa_cli -i wlan0 reconfigure
    reboot
  • sudo apt-get -y update
  • sudo apt-get -y dist-upgrade

Linux framebuffer imageviewer installieren

  • sudo apt-get -y update
  • sudo apt-get -y install fbi