Set up Raspberry PI
Steps:
Install Raspberry PI image (Raspbian) via Balena Etcher:
Set up SSH Access by creating an empty file called SSH:
touch /boot/ssh
Set up Wifi Connection by creating a file called wpa_supplicant.conf in
/boot
touch /boot/wpa_supplicant.conf
Use the following config:
country=US # Your 2-digit country code
ctrl_interface=DIR=/var/run/wpa_supplicant GROUP=netdev
network={
ssid="YOUR_NETWORK_NAME"
psk="YOUR_PASSWORD"
key_mgmt=WPA-PSK
}
With this file in place, Raspberry Pi OS will automatically move it in /etc/wpa_supplicant/
when the Raspberry Pi is booted.
Last updated