Set up Raspberry PI

Steps:

  1. Install Raspberry PI image (Raspbian) via Balena Etcher:

  2. Set up SSH Access by creating an empty file called SSH:

touch /boot/ssh
  1. 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.

Log in via SSH

Default user: pi

Default password: raspberry

Last updated