Windows
- Get the Raspberry Pi Imager tool
- Use it to put the Raspbian image on your Raspberry Pi's SD card
- Take out the SD card, then put it back in.
- Open File Explorer, go to the View tab in the menu, and check the box that says "File name extensions"
- Make a new empty text file and name it "ssh" (remove the ".txt" part)
- If you want to connect to Wi-Fi, make another file named "wpa_supplicant.conf".
(wpa_supplicant.conf)
country=DE
ctrl_interface=DIR=/var/run/wpa_supplicant GROUP=netdev
update_config=1
network={
scan_ssid=1
ssid="your_wifi_ssid"
psk="your_wifi_password"
}
MacOS & Linux
for linux (debian) based distros
sudo apt install rpi-imager
for MacOS click here
enable networking and ssh
mount /dev/...1 /mnt # "lsblk" to list drives
cd /mnt
touch ssh # create empty file named "ssh"
cat <<EOF > wpa_supplicant.conf
country=DE
ctrl_interface=DIR=/var/run/wpa_supplicant GROUP=netdev
update_config=1
network={
scan_ssid=1
ssid="your_wifi_ssid"
psk="your_wifi_password"
}
EOF
That's it!
If you have questions left contact me at contact@phoenixthrush.com and have fun with your Raspberry Pi!