Setup my Raspberry Pi (s) for whatever follows ;)
Download latest Raspbian (either desktop or lite) https://www.raspberrypi.org/downloads/raspbian/
Install OS on SD card: https://www.raspberrypi.org/documentation/installation/installing-images/linux.md
Modify settings on SD card:
Create empty file ssh
on SD card (enables SSH server on boot)
Create/Modify wpa_supplicant.conf
(connect to WiFi on boot)
ctrl_interface=DIR=/var/run/wpa_supplicant GROUP=netdev
update_config=1
country=DE
network={
ssid="NETWORK-NAME"
psk="NETWORK-PASSWORD"
key_mgmt=WPA-PSK
scan_ssid=1
}
sudo raspi-config
Static IP:
/etc/dhcpcd.conf
interface wlan0
static ip_address=192.168.0.11/24
static routers=192.168.0.1
static domain_name_servers=192.168.0.1