Raspberry: Unterschied zwischen den Versionen
Zur Navigation springen
Zur Suche springen
(Die Seite wurde neu angelegt: „= Links = * http://yetanotherpointlesstechblog.blogspot.com/2016/04/emulating-bluetooth-keyboard-with.html * https://impythonist.wordpress.com/2014/02/01/emula…“) |
|||
Zeile 18: | Zeile 18: | ||
} | } | ||
</pre> | </pre> | ||
* Statische IP-Adresse: /etc/dhcpcd.conf | |||
<pre>interface wlan0 | |||
static ip_address=192.168.2.60/24 | |||
</pre> | |||
== Installation Debian-Buster == | == Installation Debian-Buster == | ||
<source lang="bash"> | <source lang="bash"> |
Version vom 1. Juni 2021, 17:48 Uhr
Links
- http://yetanotherpointlesstechblog.blogspot.com/2016/04/emulating-bluetooth-keyboard-with.html
- https://impythonist.wordpress.com/2014/02/01/emulate-a-bluetooth-keyboard-with-the-raspberry-pi/
Rasberry Zero W
- Power ist USB-Buchse "außen"
- Leere Datei ssh in Bootverzeichnis.
- WLan-Konfiguration: im Bootverzeichnis wpa_supplicant.conf
ctrl_interface=DIR=/var/run/wpa_supplicant GROUP=netdev update_config=1 country=DE network={ ssid="Zweisiedler" psk="WLAN-PASSWORT" key_mgmt=WPA-PSK }
- Statische IP-Adresse: /etc/dhcpcd.conf
interface wlan0 static ip_address=192.168.2.60/24
Installation Debian-Buster
export RPI_MODEL=1
export SD_CARD=/dev/sdc
export DEBIAN_RELEASE=buster
wget https://raspi.debian.net/daily/raspi_${RPI_MODEL}_${DEBIAN_RELEASE}.img.xz
wget https://raspi.debian.net/daily/raspi_${RPI_MODEL}_${DEBIAN_RELEASE}.xz.sha256
sha256sum -c raspi_${RPI_MODEL}_${DEBIAN_RELEASE}.xz.sha256
xzcat raspi_${RPI_MODEL}_${DEBIAN_RELEASE}.img.xz | dd of=/dev/sdc bs=64k oflag=dsync status=progress