DEV Community

Cover image for 9-Steps Raspberry Pi Headless Setup with Ubuntu 21.04
Henri Rion
Henri Rion

Posted on • Updated on

9-Steps Raspberry Pi Headless Setup with Ubuntu 21.04

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 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 you can buy on Amazon.

Step 3: ๐Ÿ”ฅ Flash the Card with Ubuntu 21.04

Launch the Raspberry Pi Imager tool.
Raspberry Pi Image Welcome Page

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).

Raspberry Pi Image Welcome Page

Now letโ€™s choose the SD Card (be careful here, to select the right one!).

Raspberry Pi Imager

Now we are all set, and we can click on Write button to actually flash the SD card.

Raspberry Pi Imager

Raspberry Pi Imager

After a couple of minutes (writing & verifying), your microSD card will be flashed.

Raspberry Pi Imager

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.

network-config in the root directory

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
Enter fullscreen mode Exit fullscreen mode

As you can see, a specific section about wifis is already written, and commented.

Now, change this file such as:

version: 2
ethernets:
  eth0:
    dhcp4: true
    optional: true
wifis:
  wlan0:
  dhcp4: true
  optional: true
  access-points:
    your_wifi_name:
    password: "your_password"
Enter fullscreen mode Exit fullscreen mode

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 itโ€™s 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:

UBUNTU Machine IP Address on local network: 192.168.1.45

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
Enter fullscreen mode Exit fullscreen mode

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])?
Enter fullscreen mode Exit fullscreen mode

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 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 Catchtheblock.com.

Post Scriptum #2

If you prefer a good video detailing this process, I recommend watching this one
๐Ÿ‘‰ https://www.youtube.com/watch?v=dJTqd90bwsI

Top comments (0)