How To Install CentOS 7 in Raspbery PI
For people wanting to test different Linux distributions in our credit card sized computer, CentOS linux is a valid alternative enabling you to access a different repository from Debian one.
Derived from the sources of Red Hat Enterprise Linux (RHEL), it uses yum as package manager.
Like CentOS, also Fedora is owned by Red Hat. The main difference between the two disrtibutions is in their updates relase frequency: CentOS (like RHEL) is more focused on long-term support with advanced security features. On the other hand Fedora releases more frequent updates. This is one of biggest reason why CentOS is preferred to Fedora for server environments.
In this guide, I’m going to show you how to install CentOS in your Raspberry PI. This tutorial has been tested with Raspberry PI 3 Model B+, but will work also to install CentOS 7 in Raspberry PI 4.
If you want to know more about this distro, please refer to CentOS project home page.
What We Need
As usual, I suggest adding from now to your favourite ecommerce shopping chart all needed hardware, so that at the end you will be able to evaluate overall costs and decide if continuing with the project or removing them from shopping chart. So, hardware will be only:
- Raspberry PI (including proper power supply or using a smartphone micro usb charger with at least 3A)
- micro SD card (at least 16 GB, at least class 10)
- micro HDMI cable or HDMI cable or mini HDMI cable (check your Raspberry PI HDMI port in Comparing main features of latest RPI models)
- USB/wireless keyboard
CentOS offers also different ARM based ISO. I’m opting to use the KDE version to test the delicious Desktop Environment performance on our hardware.
You also need a Windows PC with Etcher installed (to flash SD card) and Putty (if you want remote ssh access). Also a Windows compression program compatible with “.xz” files (like Winrar) is required.
Step-by-Step Procedure
Obtain ISO
With Windows PC, download ARM CentOS iso from CentOS ARM iso download page (selecting latest armhfp version and downloading Raspberry PI KDE iso) inside the PC where Etcher is installed. I’m using CentOS 7.7.1908.
Exctract the contet of downloaded file inside a directory at your choice. You will have a “.raw” file containing ISO image. Edit file name changing extension from “.raw” to “.img”. Confirm when Windows popups of risks about changing file extension.
Flash SD Card
This part will be done in your Windows PC.
Open Balena Etcher. Note: sometimes Etcher has problems flashing SD cards without administrative permissions, for this reason I suggest to run it as administrator.

Click select image button and select the file just renamed.

Insert SD Card in your Windows PC. If not automatically recognised by Etcher, click “Select target” and select partition letter related to your inserted SD Card.

Click “Flash!” button and wait for flashing operation to be finished.

Now you can close Etcher and extract your SD Card from Windows PC.
First Boot on Raspberry PI and First Setting
Insert SD card in your Raspberry PI, connect it to keyboard and HDMI (monitor). Power on the Raspberry PI.
The first screen shows system loading (will last about less than a minute).
Once prompted for login, insert default user credentials:
- user: root
- password: centos
Then you will go directly to desktop screen and your CentOS installation is finished!
Post Installation Tunings
Once installed, a few common tunings can be useful.
Update Your System
Make your OS up to date. From Terminal:
yum -y update yum -y upgrade
Setup WiFi
This can be done in a very simple manner with icon in bottom-rigt side of your desktop:

From this panel, select your WiFi network and insert your password.
Remember to flag System Connection option if you want this WiFi network up after each reboot. Otherwise, you will need to login from Desktop Environment and manually enable connection.
Remote SSH
Once connected to a network (Wired or WiFi), remote SSH is enabled by default with default root user cedentials used to logon in Desktop environment. Find CentOS IP address from its terminal (with “ip addr” terminal command, since from CentOS 7 “ifconfig” terminal command is no more available) or from its networking settings.
Shrink Disk
By default, CentOS uses only a limited part of your disk. To use all available space in your SD Card, from terminal type the following command:
rootfs-expand
Final Considerations
CentOS with KDE surprised me for being so responsive and fast on Raspberry PI. In past (many many many years ago…) I already tested KDE on low end PC, but I found it heavy and abandouned for lighter Desktop Environments. I have to say that today I reconsidered it.
From CentOS side, it is a strong and stable OS. It derives from Red Hat Enterprise Linux (RHEL), an OS focused on large enterprises and critical businesses. So it has an important backend at its basis.
Enjoy!