Raspberry pi 3 (Raspbian Jessie) Headless Setup

Bhargav Shah
2 min readJan 13, 2019

--

Install Raspbian Jessie lite on Raspberry Pi 3

In the past, I have written blogs on “Converting Raspberry Pi 3 into Media Center — KODI 17.6 krypton

Now we will start Installation of Raspbian Jessie lite on Raspberry Pi 3.

We are planning to do #Headless setup (No Monitor and No keyboard required)

  1. Download the required software
    SA Association — SD Card Formatter
    Etcher — Burn Images to SD card (for windows use Win32DiskImager)
    Raspbian Stretch Lite — official OS for Raspberry Pi
  2. Format SD card — This will ensure memory usage of SD card
  3. Burn OS image to SD card — Download OS
  4. Go to root directory in SD card and make a file named as “ssh”— This will allow us to ssh into our Raspberry pi for our #Headless setup
  5. Go to root directory in SD card and make a file named “wpa_supplicant.conf” — This will connect WiFi network
  6. Add the following content in configure file. network={
    ssid="testing"
    psk="testingPassword"
    }
  7. Attach Raspberry Pi to a Power supply — Red light will indicate power supply and green light will indicate SD card access. (we have to wait for a couple of minutes as OS is booting)
  8. Find the Raspberry Pi IP address — I did trial and error method. My mac local IP address was 192.168.0.6 so tried doing a ping from 192.168.0.1~192.168.0.10 and I found my Raspberry Pi address — It was 192.168.0.8
  9. Try ssh into Raspberry pi using Username: pi and Password: raspberry

We are in our Raspberry Pi 3 — hurry 😎

Use the following commands to update OS :

$ sudo apt-get update
$ sudo apt-get upgrade
$ sudo apt-get dist-upgrade
$ sudo apt-get install -y rpi-update
$ sudo rpi-update
$ sudo reboot

Next, Planning to convert my Raspberry Pi into iBeacon. Stay tuned.

--

--