DEV Community

El Bruno
El Bruno

Posted on • Originally published at elbruno.com on

#RaspberryPi – Install raspi-config on Ubuntu 22.04.1 LTS

Hi !

This is my current Ubuntu version running on a Raspberry Pi 4.

raspi-config is a powerful tool to manage the device settings for the Raspberry Pi. It’s included in Raspberry Pi OS, but not in the Ubuntu distro. So, if yu want to use raspi-config, follow these steps

Of course, we start with an Ubuntu image:

ubuntu images in raspberry pi imager

Now, let’s add the debian repository to the source list


echo "deb http://archive.raspberrypi.org/debian/ buster main" >> /etc/apt/sources.list

Enter fullscreen mode Exit fullscreen mode

Add the Key


apt-key adv --keyserver hkp://keyserver.ubuntu.com:80 --recv-keys 7FA3303E

Enter fullscreen mode Exit fullscreen mode

And, the update and install raspi config


sudo apt-get update
sudo apt-get install raspi-config

Enter fullscreen mode Exit fullscreen mode

And now we can run raspi-config (in sudo mode)


sudo raspi-config

Enter fullscreen mode Exit fullscreen mode

raspi config running in Ubuntu

I really like to use this to

  • change my host name
  • expand my filesystem
  • configure the wireless network
  • update the OS
  • etc

Super easy !

Happy coding!

Greetings

El Bruno

More posts in my blog ElBruno.com.


Top comments (0)