Install Ubuntu Server on Raspberry Pi

date
Jun 22, 2023
thumbnail
slug
install-ubuntu-server-on-raspberry-pi
author
Can Durmus
status
Published
tags
Installation
Raspberry Pi
Ubuntu
Linux
Start Here
summary
Headless installation of Ubuntu 20.04 LTS Server to Raspberry Pi
type
Post
updatedAt
Jul 1, 2023 06:13 PM
In this blog post, we will be installing Ubuntu 20.04 LTS Server to the Raspberry Pi. This operating system offers a wide range of use cases, and we will be taking advantage of it in future posts.

1. Download the Ubuntu Server 20.04 LTS

Go to the Raspberry Pi section of the Ubuntu downloads and download the 20.04 LTS 64-bit version.
notion image

2. Download Balena Etcher

We will be using Balena Etcher to flash the OS to the Micro SD card. You can download Balena Etcher from this link.
notion image

3. Unzip the OS image

When the Ubuntu download is completed you can export it from .xz compressed format with a tool of your choice.
notion image
After the export, you should have a .img file.
notion image
Ā 

4. Flash the OS to the SD Card

Start the Balena Etcher and select the .img file as the image and select the Micro SD card as the target and start flashing.
notion image

5. Setup Wi-Fi and SSH

When the flash is completed the Micro SD card will be unmounted. You can unplug and plug it in again to mount it automatically. In order to set up the WiFi access for the Raspberry Pi running Ubuntu Server, you need to edit the file named network-config in the Micro SD card.
notion image
The file should look like below.
notion image
By uncommenting the relevant lines, you can add a new network SSID and password as you can see below.
notion image
Since we are using a server OS, SSH will be enabled by default, so you donā€™t have to do anything for SSH configuration.
You can put the Micro SD card into the Pi and power it up.

6. Find the IP Address of the Raspberry Pi

When the Raspberry Pi boots up it will be connected to the WiFi network that you have configured. You can use any IP Scanner application to scan your network to spot the Raspberry Pi IP address. It will be shown as ā€˜ubuntuā€™.
notion image

7. Connect to the Raspberry Pi

With the IP address, you can use the command below to connect to the Raspberry Pi. Do not forget to change the IP address below to your actual Raspberry Pi IP address.
ssh [email protected]
Ā 
The password is: ā€˜ubuntuā€™
In the first login, the OS will ask you to change the password.
notion image
After changing the password your Ubuntu Server on Raspberry Pi is ready to use.
notion image

8. Update and Upgrade

Do not forget to update the package list and upgrade the outdated packages.
sudo apt update sudo apt upgrade
notion image