Install OpenRGB in Ubuntu/Debian-based Linux Distros

openrgb logo on red gradient

The RGB lighting effects in PCs and their peripheral parts make the experience vivid and add aesthetics to the setup.

The lighting feature is available in almost all components like keyboards, mice, fans, etc. Moreover, the hardware manufacturers provide their own software for controlling their RGB lighting systems.

It is a positive thing, but there is a downside for Linux users. They do not create the software for Linux systems.

That’s where open-source software like OpenRGB comes to the rescue. OpenRGB is open-source software that is used to control the RGB lighting. Free of cost and with rich functionality, it is the go-to tool for Linux users to control the RGB lighting as it is compatible with many manufacturers.

In this tutorial, we will walk through the steps of installing the OpenRGB software in Ubuntu and Debian-based Linux distros. We will explore a few methods to achieve this. We will install the software using the PPA repository, using the AppImage and from the deb package.

Installing OpenRGB Using PPA Repository

The use of the PPA(Personal Package Archive) repository to install the software in the Ubuntu/Debian-based system is very popular.

The first step is to fetch and update the system packages. We can achieve it with the following commands.

sudo apt update && sudo apt upgrade

The next step is to add the OpenRGB PPA repository. Use the following command for that.

sudo add-apt-repository ppa:thopiekar/openrgb

Now the repository has been added to the list, and it’s time to update the system to let it know the repository has been added.

sudo apt update

Now, use the following command to install OpenRGB.

sudo apt install openrgb

Finally, the OpenRGB software will be installed. You can use the following command to check whether it has been installed.

openrgb -V
Output
OpenRGB 0.71, for controlling RGB lighting.
Version:                 0.71 
Build Date               Mon, 13 Jun 2022 09:46:32 +0000
Git Commit ID
Git Commit Date Git Branch

Installing OpenRGB Using AppImage

One of the simplest methods to install OpenRGB is installing it via AppImage. It is an alternative to installing the software with a PPA repository.

OpenRGB may not have a release for every Linux distribution. In such a case installing the OpenRGB AppImage is the option. It is the fastest option to use any software. AppImage provides a portable software version that can run on any machine. There is no need to install the software.

After downloading the AppImage file of software, we can directly run it through the command line. Therefore it helps to eliminate the tedious and time-consuming process of installing the software according to the distros.

For OpenRGB, we can download its AppImage from the OpenRGB website.

Download the AppImage according to the architecture of your system. A file with the extension .AppImage will be downloaded. Next, navigate to the path where the file is downloaded and change the permission of the file as follows.

chmod +x OpenRGB_0.7_x86_64_6128731.AppImage

The above command will give everyone the right to execute the AppImage file. Here, +x represents the execute permission. OpenRGB_0.7_x86_64_6128731.AppImage is the name of the file.

After granting the permission, the software is ready to be used. Use the following command to run the OpenRGB software from the terminal.

./OpenRGB_0.7_x86_64_6128731.AppImage

After running this command, OpenRGB will open, and you can start using it.

Installing OpenRGB With DEB Package

The third method of installing the OpenRGB software is through the deb package. This method is suitable for the Debian and Debian-based distributions such as Linux Mint, Ubuntu, Kali Linux, etc.

The first step is to download the OpenRGB deb file. You can find the deb file on OpenRGB website. After downloading the file, navigate to the path and use the dpkg command to install the file as below.

sudo dpkg -i openrgb_0.7_amd64_bullseye_6128731

The command will install OpenRGB in the system. However, you might run into a dependency error while installing the deb package. Run the following command to download the dependencies.

sudo apt install -f

The command will download OpenRGB, and we can access the software from the application menu.

Conclusion

In this tutorial, we learned that OpenRGB is a life-saver tool for controlling RGB lighting in Linux. We learned a couple of ways to install the software, including installing with the PPA repository, AppImage and deb package.

0 Shares:
Subscribe
Notify of
guest
Receive notifications when your comment receives a reply. (Optional)
Your username will link to your website. (Optional)

1 Comment
Oldest
Newest Most Voted
Inline Feedbacks
View all comments
John
John
1 year ago

Very useful tutorial. Thanks!

You May Also Like
Usermod Command in Linux
Read More

Usermod Command in Linux

The usermod command allows us to modify an existing user account. With the usermod command, we can make…