OrangePi SBC ARM

Orange Pi 6 Plus Single Board Computer running Linux: Ubuntu

First Steps

I get Ubuntu 24.04 LTS, a major, stable, long-term support release of the Ubuntu operating system. Personally I would have preferred Ubuntu 25.10 but it’s understandable why the latest LTS was chosen.

Here’s the output from df immediately after booting the computer for the first time.

df

As you can see, Ubuntu 24.04 is consuming only 6GB of disk space. For the curious, the /dev/sda2 entry is my microSD card which hosts Debian 12. I like that the Pi 6 Plus has a BIOS which makes it easy to have dual-boot systems. I’m going to explore the BIOS in a subsequent article.

Let’s change the hostname.

$ sudo hostnamectl set-hostname linuxlinks

I’ll also install hyper (a terminal emulator which looks snazzy) which has an ARM package for Debian/Ubuntu.

Now I’ll update the system using apt (the package manager for Debian/Ubuntu). It’s important you perform this update.

$ sudo apt update

Updating the system

$ sudo apt upgrade

Updating the system

Next, I want to enable SSH remote control within a local area network (LAN). The OpenSSH server is already installed, so all I need to do is start the ssh service and enable the SSH service on boot with the commands:

$ sudo systemctl start ssh
$ sudo systemctl enable ssh

Start ssh service and enable on boot

Issuing the command $ ip a tells me the local IP address for the Pi 6 Plus (there are other ways of finding this information). I can then use a SSH client (for a GUI tool I recommend XPipe) to log into the Pi 6 Plus.

Login via ssh

You can see I’m running kernel version 6.6.89.

top shows that no swap has been set up. I’ll probably run without any swap given that my device has 32GB of RAM.

top

I’m running GNOME although I’ve moved over to KDE for most of my devices.

Ubuntu

Ubuntu

Next page: Page 3 – Installing Software

Pages in this article:
Page 1 – Installing Ubuntu 24.04 LTS
Page 2 – Running Ubuntu 24.04 LTS
Page 3 – Installing Software


Complete list of articles in this series:

Orange Pi 6 Plus
IntroductionIntroduction to the series and interrogation of the single-board computer
BenchmarksBenchmarking the Orange Pi 6 Plus
CoresThe 3 different types of core
PowerTesting and comparing the power consumption
UbuntuTesting the Ubuntu 24.04 LTS image
Subscribe
Notify of
guest
0 Comments
Oldest
Newest Most Voted
Inline Feedbacks
View all comments