Raspberry Pi Prerequisites
Hardware
- Hardware: Raspberry Pi 4/3B+
- Power: Raspberry Pi USB-C Power Supply
- Storage: Micro SD Card
- SD Card Adapter: SD Card Reader
- Affiliate links
Prepping Your Pi
If you didn't know, your Raspberry Pi doesn't come with an operating system. Don't panic! We're going to install one now called Raspberry Pi OS.
1. Raspberry Pi Imager
Like a Macbook runs MacOS, and a Dell runs Windows, a Raspberry Pi runs Linux, which comes in many different flavors depending on your needs. Since we're using a Raspberry Pi, we'll use Raspberry Pi OS (64-bit), an operating system made just for the Pi. The Imager installs the operating system onto your microSD card, where we'll set up Hush Line. Download it from https://www.raspberrypi.com/software/.


Prep Your Card
2. Install Raspberry Pi OS
Open the Raspberry Pi Imager and click Choose OS > Raspberry Pi OS (other) > Raspberry Pi OS (64-Bit)
.
Insert your microSD card into your computer, and then click Choose Storage
and select your card.

Before clicking Write, click on the Settings gear in the bottom right of the window. Configure the following settings:
- Hostname =
hushline
- Enable SSH with password authentication
- User =
hush
- Set a strong password
- Add wifi settings

Boot up and log in to Your Pi
3. Insert microSD Card
Take your SD card and insert it into your Raspberry Pi. You'll find the SD card slide on the bottom of the board, opposite the ethernet ports.
Plug the power supply into the device and let it boot up.
4. Log In
On a Mac, open Spotlight search by pressing CMD + Space. Enter "Terminal" and select the application with the same name.
Enter ssh hush@hushline.local
, and when prompted, enter the password you created in the second step.

5. Update your system
The last thing we need to do is to update our system. First, we'll give ourselves admin priviledges, then perform the update:
Enter sudo su
, then apt update && apt -y dist-upgrade && apt -y autoremove
.

🎉 That's it, you're ready to get started with Raspberry Pi!