Raspberry Pi: Setting up - msandholz/RaspberryPi-Tutorials GitHub Wiki
Step 1: Create bootable micro SD card with Raspbian image
- Download Zip-File on: https://www.raspberrypi.org/downloads/raspbian/
- Flash file with Etcher to micro SD card
Step 2: Enable ssh to allow remote login
- Create file called
ssh
in boot folder - without file extension - Open
ssh
with notepad and insert only one space and nothing more - Store file
Step 3: Configure WLAN-Connectivity
-
Create file called
wpa_supplicant.conf
in boot folder -
Open file with notepad and insert
# Datei wpa_supplicant.conf in der Boot-Partition (Raspbian Jessie) network={ ssid="wlan-bezeichnung" psk="passwort" key_mgmt=WPA-PSK }
#Datei wpa_supplicant.conf in der Boot-Partition (Raspbian Stretch) country=DE #omit if US ctrl_interface=DIR=/var/run/wpa_supplicant GROUP=netdev update_config=1 network={ ssid="wlan-bezeichnung" psk="passwort" key_mgmt=WPA-PSK }
#Datei wpa_supplicant.conf in der Boot-Partition (Raspbian Buster) ctrl_interface=DIR=/var/run/wpa_supplicant GROUP=netdev update_config=1 country=DE network={ ssid="WiFi SSID" psk="WPA/WPA2 passphrase" key_mgmt=WPA-PSK }
Step 4: Boot the Raspberry Pi from the micro SD card
sudo raspi-config
Step 5: Configure Raspberry Pi with ```
4 Localisation Options -> I1 Change Locale -> de_DE.UTF-8
4 Localisation Options -> I2 Change Timezone -> Europe -> Berlin
7 Advanced Options -> A1 Expand Filesystem
8 Update
```