For this project, I am using a Ras Pi 4 with 4G ram.

  1. Start with a fresh install of Raspberry OS

  2. Create an SSH file within the Boot drive

    If you have the latest version of R-Pi Imager, they have now included “Advanced options” to auto configure many settings while it’s writing the image. Brilliant!! (saves a bit of time too)

    For those who like it the “old skool” way, do the following:

    On a Windows machine:

    On a Mac via Terminal:

    cd /
    cd /Volumes/boot
    
    touch ssh
    
    ls
    
    cd
    

    https://s3-us-west-2.amazonaws.com/secure.notion-static.com/99db436f-c763-4308-8c71-24a94bcf5496/Untitled.png

  3. Insert the SD into the Pi and power it up

  4. Find the IP of the Pi

  5. SSH into your Pi

    ssh pi@[IP address of Pi]
    
  6. Update your Pi

    sudo apt update && sudo apt upgrade -y
    
  7. Set a static IP

**sudo nano /etc/dhcpcd.conf**
**#Ethernet static IP configuration
	interface eth0
	static ip_address=192.168.xxx.xxx/24
	static routers=192.168.xxx.xxx
	static domain_name_servers=192.168.xxx.xxx**
**sudo reboot**
**ip a**
  1. Reset password for the Pi using: