How To Install DecodeIR on Fedora 34
Introduction
In this tutorial we learn how to install DecodeIR
on Fedora 34.
What is DecodeIR
DecodeIR is a general library which can decode signals for a large number of infrared remote controls. It can be used as a regular C library or through a java interface. Being a JNI library, it does not support multi-arch installations. DecodeIR 2.45 17.fc34 x86_64 84 k DecodeIR-2.45-17.fc34.src.rpm fedora Infrared remote controls decoding library http Public Domain and GPLv2+ DecodeIR is a general library which can decode signals for a large number of infrared remote controls. It can be used as a regular C library or through a java interface. Being a JNI library, it does not support multi-arch installations.
We can use yum
or dnf
to install DecodeIR
on Fedora 34. In this tutorial we discuss both methods but you only need to choose one of method to install DecodeIR.
Install DecodeIR on Fedora 34 Using dnf
Update yum database with dnf
using the following command.
sudo dnf makecache --refresh
The output should look something like this:
Fedora 34 - x86_64 20 kB/s | 6.6 kB 00:00
Fedora 34 openh264 (From Cisco) - x86_64 1.4 kB/s | 989 B 00:00
Fedora Modular 34 - x86_64 68 kB/s | 6.5 kB 00:00
Fedora 34 - x86_64 - Updates 3.5 kB/s | 6.2 kB 00:01
Fedora Modular 34 - x86_64 - Updates 17 kB/s | 5.9 kB 00:00
Metadata cache created.
After updating yum database, We can install DecodeIR
using dnf
by running the following command:
sudo dnf -y install DecodeIR
Install DecodeIR on Fedora 34 Using yum
Update yum database with yum
using the following command.
sudo yum makecache --refresh
The output should look something like this:
Fedora 34 - x86_64 20 kB/s | 6.6 kB 00:00
Fedora 34 openh264 (From Cisco) - x86_64 1.4 kB/s | 989 B 00:00
Fedora Modular 34 - x86_64 68 kB/s | 6.5 kB 00:00
Fedora 34 - x86_64 - Updates 3.5 kB/s | 6.2 kB 00:01
Fedora Modular 34 - x86_64 - Updates 17 kB/s | 5.9 kB 00:00
Metadata cache created.
After updating yum database, We can install DecodeIR
using yum
by running the following command:
sudo yum -y install DecodeIR
How To Uninstall DecodeIR on Fedora 34
To uninstall only the DecodeIR
package we can use the following command:
sudo dnf remove DecodeIR
DecodeIR Package Contents on Fedora 34
/usr/lib/.build-id
/usr/lib/.build-id/81
/usr/lib/.build-id/81/569c296bef7b99ccc0a8e719c5c5c20edae6e6
/usr/lib/java/DecodeIR
/usr/lib/java/DecodeIR/DecodeIRCaller.jar
/usr/lib64/DecodeIR
/usr/lib64/DecodeIR/libDecodeIR.so
/usr/lib64/libDecodeIR.so
/usr/share/doc/DecodeIR
/usr/share/doc/DecodeIR/DecodeIR.html
/usr/share/licenses/DecodeIR
/usr/share/licenses/DecodeIR/license-mail.txt
/usr/share/maven-metadata/DecodeIR.xml
/usr/share/maven-poms/DecodeIR
/usr/share/maven-poms/DecodeIR/DecodeIRCaller.pom
/usr/lib/.build-id
/usr/lib/.build-id/a1
/usr/lib/.build-id/a1/514cece8cd97bc8d803bfbaf51b6adc40d6a5e
/usr/lib/DecodeIR
/usr/lib/DecodeIR/libDecodeIR.so
/usr/lib/java/DecodeIR
/usr/lib/java/DecodeIR/DecodeIRCaller.jar
/usr/lib/libDecodeIR.so
/usr/share/doc/DecodeIR
/usr/share/doc/DecodeIR/DecodeIR.html
/usr/share/licenses/DecodeIR
/usr/share/licenses/DecodeIR/license-mail.txt
/usr/share/maven-metadata/DecodeIR.xml
/usr/share/maven-poms/DecodeIR
/usr/share/maven-poms/DecodeIR/DecodeIRCaller.pom
References
- [DecodeIR website](http://sourceforge.net/p/controlremote http://sourceforge.net/p/controlremote)
Summary
In this tutorial we learn how to install DecodeIR
on Fedora 34 using yum and dnf.