How to Set up Raspberry Pi Headless with Ubuntu 21.04 in 9 Easy Steps

Written by henri228 | Published 2021/08/12
Tech Story Tags: raspberry-pi | ubuntu | headless | how-to-set-up-raspberry-pi | tutorial | raspberry-pi-development | raspberry-pi-os | technology

TLDRvia the TL;DR App

Hold-on, if you don't have a Raspberry Pi, yet, I can recommend these on Amazon.

Step 1: šŸ“ Download Raspberry Pi Imager

Raspberry Pi Imager is used to install the Operating System to the microSD card. This software works for MacOS, Windows and Linux (click here to download).

Step 2: šŸ”Œ Plug your microSD card to your computer

Depending on your computer setup, you will need a microSD Card reader.
Being on a Mac, Iā€™m usingĀ this docker:

Step 3: šŸ”„ Flash the Card with Ubuntu 21.04

Launch the Raspberry Pi Imager tool.
Depending on the Raspberry Pi you have, you will need to choose the right OS (64-bit vs 32-bit). In this case, Iā€™m using the 64-bit version).
Now letā€™s choose the SD Card (be careful here, to select the right one!).
Now we areĀ all set, and we can click on Write button to actually flash the SD card.
After a couple of minutes (writing & verifying), your microSD card will be flashed.

Step 4: šŸ“” Setup WiFi connection

Eject, and re-plug the microSD card to your computer.
Now, open the microSD card directory, and look for the ā€œnetwork-configā€ file (in the root folder).
Open it with your favorite IDE. Iā€™m usingĀ Visual Studio CodeĀ in this tutorial.
The initial content of this file should look like this:
#[...] some comments
version: 2
ethernets:
  eth0:
    dhcp4: true
    optional: true
#wifis:
#  wlan0:
#    dhcp4: true
#    optional: true
#    access-points:
#      myhomewifi:
#        password: "S3kr1t"
#      myworkwifi:
#        password: "correct battery horse staple"
#      workssid:
#        auth:
#          key-management: eap
#          method: peap
#          identity: "me@example.com"
#          password: "passw0rd"
#          ca-certificate: /etc/my_ca.pem
As you can see, a specific section about wifi is already written, and commented.
Now, change this file:
version: 2
ethernets:
  eth0:
    dhcp4: true
    optional: true
wifis:
  wlan0:
  dhcp4: true
  optional: true
  access-points:
    your_wifi_name:
    password: "your_password"
Save the file, and eject the microSD card properly from your computer.

Step 5: šŸ Start the Raspberry Pi

Now, we have a properly flashed microSD card, and a wifi connection, letā€™s plug back the microSD card into the Raspberry Pi, and switch it on.

Step 6: šŸ  Identify your Raspberry Pi IP address

In order to connect us to our Raspberry Pi, we need to define its IP address.
Several methods can be used here. The easiest one consists in connecting to your internet provider box, and try to find the new Ubuntu Server from our Raspberry Pi.
Here we are:

Step 7: šŸ›°ļø SSH connection

Hold on, what is SSH connection? According to Wikipedia: SSH is typically used to log into a remote machine and execute commands
Now, open a Terminal command.
ssh ubuntu@192.168.1.45
ubuntu is the default login, and the @192.. is the IP address we identified in the previous step.
The authenticity of host '192.168.1.45 (192.168.1.45)' can't be established.
ECDSA key fingerprint is SHA256:xxxxxx.
Are you sure you want to continue connecting (yes/no/[fingerprint])?
Type Yes.
The default password is ubuntu as well. You will be required to change the password directly after first sign-in.
Once the new password is set, the connection will be automatically closed. You will have to restart the ssh connection, using the new password you defined.

Step 8: šŸæ Enjoy

You are all set.

Comment ā˜

Donā€™t forget, that we didnā€™t define a static IP address for our Raspberry Pi. It means, that the IP address will be dynamically (DHCP) changed over time. If you need a static IP, please check my next article (soon).

Post Scriptum #1

If you like this kind of blog posts, don't hesitate to check my blog https://catchtheblock.com .

Post Scriptum #2

If you prefer a goodĀ videoĀ detailing this process, I recommend watching this one šŸ‘‡

Written by henri228 | Entrepreneur, Founder @ Koopol, convinced about future of crypto
Published by HackerNoon on 2021/08/12