Hier werden die Unterschiede zwischen zwei Versionen angezeigt.
| Beide Seiten der vorigen Revision Vorhergehende Überarbeitung Nächste Überarbeitung | Vorhergehende Überarbeitung | ||
|
raspberry:raspberry [18.12.2015 20:07] marc [WLAN-Stick] |
raspberry:raspberry [16.02.2016 17:01] (aktuell) marc [WLAN-Stick] |
||
|---|---|---|---|
| Zeile 11: | Zeile 11: | ||
| * evtl. Gehäuse | * evtl. Gehäuse | ||
| - | ===== Installation von rasbian | + | ===== Rasbian |
| + | |||
| + | ==== Installation | ||
| Download: | Download: | ||
| Zeile 22: | Zeile 24: | ||
| dd bs=4M if=2015-11-21-raspbian-jessie.img of=/ | dd bs=4M if=2015-11-21-raspbian-jessie.img of=/ | ||
| + | ==== Firmware Update ==== | ||
| - | ===== WLAN-Stick | + | Normalerweise nicht nötig und u.U. sogar gefährlich, |
| + | |||
| + | # apt-get install rpi-update | ||
| + | # rpi-update | ||
| + | |||
| + | ==== Uhrzeit ==== | ||
| + | |||
| + | dpkg-reconfigure tzdata | ||
| + | |||
| + | === ntpd === | ||
| + | |||
| + | # apt-get install ntpdate | ||
| + | # ntpdate -u de.pool.ntp.org | ||
| + | |||
| + | ==== X deinstallieren (reiner Server-Betrieb) ==== | ||
| + | |||
| + | gpicview xarchiver xpdf galculator scratch dillo netsurf-gtk omxplayer | ||
| + | alsa-base penguinspuzzle python-pygame lxde-core lxde-common lxde-icon-theme | ||
| + | lxinput lxmenu-data lxrandr lxsession-edit lxtask | ||
| + | lxterminal lxappearance lightdm lightdm-gtk-greeter openbox fontconfig | ||
| + | fontconfig-config fonts-freefont-ttf x11-common dbus-x11 desktop-base | ||
| + | desktop-file-utils hicolor-icon-theme leafpad xdg-utils xauth | ||
| + | gtk2-engines raspberrypi-artwork wolfram-engine | ||
| + | |||
| + | Nach der Aufräumaktion wird noch „dpkg“ bereinigt. | ||
| + | |||
| + | dpkg --configure -a | ||
| + | |||
| + | ==== WLAN-Stick ==== | ||
| In / | In / | ||
| Zeile 42: | Zeile 73: | ||
| wpa-ssid " | wpa-ssid " | ||
| wpa-psk " | wpa-psk " | ||
| + | |||
| + | auto wlan1 | ||
| + | allow-hotplug wlan0 | ||
| + | iface wlan0 inet dhcp | ||
| + | wpa-ap-scan 1 | ||
| + | wpa-scan-ssid 1 | ||
| + | wpa-ssid " | ||
| + | wpa-psk " | ||
| + | |||
| + | service networking restart | ||