How To Install cmrt on Fedora 34
Introduction
In this tutorial we learn how to install cmrt
on Fedora 34.
What is cmrt
Media GPU kernel manager for Intel G45 & HD Graphics family. Allows to interface between Intel GPU’s driver and a host program through a high level language. cmrt 1.0.6 15.fc34 x86_64 191 k cmrt-1.0.6-15.fc34.src.rpm fedora C for Media Runtime https MIT Media GPU kernel manager for Intel G45 & HD Graphics family. Allows to interface between Intel GPU’s driver and a host program through a high level language.
We can use yum
or dnf
to install cmrt
on Fedora 34. In this tutorial we discuss both methods but you only need to choose one of method to install cmrt.
Install cmrt 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 cmrt
using dnf
by running the following command:
sudo dnf -y install cmrt
Install cmrt 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 cmrt
using yum
by running the following command:
sudo yum -y install cmrt
How To Uninstall cmrt on Fedora 34
To uninstall only the cmrt
package we can use the following command:
sudo dnf remove cmrt
cmrt Package Contents on Fedora 34
/etc/cmrt.conf
/usr/lib/.build-id
/usr/lib/.build-id/df
/usr/lib/.build-id/df/1cff2e72c5148d551c234bc3edd708176fa789
/usr/lib/libcmrt.so.1
/usr/lib/libcmrt.so.1.1001.0
/usr/share/doc/cmrt
/usr/share/doc/cmrt/NEWS
/usr/share/doc/cmrt/README
/usr/share/licenses/cmrt
/usr/share/licenses/cmrt/AUTHORS
/usr/share/licenses/cmrt/COPYING
/etc/cmrt.conf
/usr/lib/.build-id
/usr/lib/.build-id/e1
/usr/lib/.build-id/e1/ef491bd24b37f2d9e0753ea2597b8fe1933aa1
/usr/lib64/libcmrt.so.1
/usr/lib64/libcmrt.so.1.1001.0
/usr/share/doc/cmrt
/usr/share/doc/cmrt/NEWS
/usr/share/doc/cmrt/README
/usr/share/licenses/cmrt
/usr/share/licenses/cmrt/AUTHORS
/usr/share/licenses/cmrt/COPYING
References
- [cmrt website](https://github.com/intel/cmrt https://github.com/intel/cmrt)
Summary
In this tutorial we learn how to install cmrt
on Fedora 34 using yum and dnf.