How To Install lirc-compat on Rocky Linux 8
Introduction
In this tutorial we learn how to install lirc-compat
on Rocky Linux 8.
What is lirc-compat
Part of the LIRC package suite which handles IR remotes. See the package lirc for more. Installing this package will install most lirc sub-packages, roughly the same as installing previous versions of the lirc package.
We can use yum
or dnf
to install lirc-compat
on Rocky Linux 8. In this tutorial we discuss both methods but you only need to choose one of method to install lirc-compat.
Install lirc-compat on Rocky Linux 8 Using dnf
Update yum database with dnf
using the following command.
sudo dnf makecache --refresh
After updating yum database, We can install lirc-compat
using dnf
by running the following command:
sudo dnf -y install lirc-compat
Install lirc-compat on Rocky Linux 8 Using yum
Update yum database with yum
using the following command.
sudo yum makecache --refresh
After updating yum database, We can install lirc-compat
using yum
by running the following command:
sudo yum -y install lirc-compat
How To Uninstall lirc-compat on Rocky Linux 8
To uninstall only the lirc-compat
package we can use the following command:
sudo dnf remove lirc-compat
lirc-compat Package Contents on Rocky Linux 8
References
Summary
In this tutorial we learn how to install lirc-compat
on Rocky Linux 8 using yum and dnf.