Raspberry Pi Setup
Set up your Raspberry Pi for the first time and prepare it for MudPi installation.
What You'll Need
- Raspberry Pi (3B+, 4, or Zero W)
- MicroSD card (16GB minimum, 32GB recommended)
- USB power supply (5V, 2.5A minimum)
- Computer with SD card reader for initial setup
- WiFi network or Ethernet cable
Watch: Preparing the SD Card & Installing Raspbian
Step 1: Download Raspbian
Download the Raspberry Pi Imager from raspberrypi.org/software. This tool will help you flash the operating system to your SD card.
Tip
Step 2: Flash the SD Card
Open the Raspberry Pi Imager, select Raspbian OS Lite, and write it to your SD card. This process usually takes 5–10 minutes.
Step 3: Enable SSH and WiFi
Before ejecting the SD card, create two files in the boot partition:
- An empty file named
ssh(no extension) to enable SSH access - A
wpa_supplicant.conffile with your WiFi credentials
Create the SSH file:
touch /Volumes/boot/ssh
Create the WiFi configuration file:
country=US
ctrl_interface=DIR=/var/run/wpa_supplicant GROUP=netdev
update_config=1
network={
ssid="YourNetworkName"
psk="YourPassword"
}
Important
YourNetworkName and YourPassword with your actual WiFi credentials. Set the correct country code for your region.Watch: Booting Up & Configuring Raspbian
Step 4: Boot and Connect
Insert the SD card into your Pi, connect power, and wait about 60 seconds for it to boot. Then SSH in:
ssh pi@raspberrypi.local
The default password is raspberry. Change it immediately:
passwd
Step 5: Update Your System
Update the package list and upgrade all installed packages to the latest versions:
sudo apt-get update && sudo apt-get upgrade -y
Note
Next Steps
Your Pi is ready! Continue to Installing MudPi to set up the core system.