This guide covers the assembly of a Raspberry Pi 5 with a custom case, flashing the operating system, and connecting via SSH. We will also inspect the new hardware features, such as the power button and fan headers.
The Raspberry Pi 5 introduces several physical updates, including a dedicated power button and fan connectors.
Place the board into the bottom of the case. While screws can be used for security, the fit is often snug enough without them. Attach the active cooler fan to the top lid, ensuring the fan header connects to the board. Snap the lid onto the case to protect the components while allowing for basic airflow.
Insert the microSD card into the slot on the underside of the board. Ensure the metal connectors on the card face towards the board itself.
We use the official Raspberry Pi Imager to install the operating system. This tool simplifies the process and allows for pre-configuration of settings like SSH and WiFi.
Visit raspberrypi.com/software and download the Raspberry Pi Imager.
Open the Imager and select your device (Raspberry Pi 5). Choose Raspberry Pi OS (64-bit) as the operating system. Select your SD card as the storage device.
Before writing, click "Edit Settings" to customize the OS image:
tss).Click Save and then Yes to write the image. This will erase all existing data on the card.
Connect the Raspberry Pi to power via USB-C and to your network via an Ethernet cable.
On your computer, open a command prompt (CMD) and run arp -a. This lists devices on your local network. Look for a new dynamic IP address that appeared (e.g., 192.168.1.112) which likely belongs to the Pi.
Use the SSH command to log in using the credentials you set during the imaging process:
ssh tss@192.168.1.112
Enter your password when prompted. You are now remotely connected to your Raspberry Pi 5.