How To Install libcrystalhd on AlmaLinux 8
Introduction
In this tutorial we learn how to install libcrystalhd
on AlmaLinux 8.
What is libcrystalhd
The libcrystalhd library provides userspace access to Broadcom Crystal HD video decoder devices. The device supports hardware decoding of MPEG-2, h.264 and VC1 video codecs, up to 1080p at 40fps for the first-generation bcm970012 hardware, and up to 1080p at 60fps for the second-generation bcm970015 hardware.
We can use yum
or dnf
to install libcrystalhd
on AlmaLinux 8. In this tutorial we discuss both methods but you only need to choose one of method to install libcrystalhd.
Install libcrystalhd on AlmaLinux 8 Using dnf
Update yum database with dnf
using the following command.
sudo dnf makecache --refresh
After updating yum database, We can install libcrystalhd
using dnf
by running the following command:
sudo dnf -y install libcrystalhd
Install libcrystalhd on AlmaLinux 8 Using yum
Update yum database with yum
using the following command.
sudo yum makecache --refresh
After updating yum database, We can install libcrystalhd
using yum
by running the following command:
sudo yum -y install libcrystalhd
How To Uninstall libcrystalhd on AlmaLinux 8
To uninstall only the libcrystalhd
package we can use the following command:
sudo dnf remove libcrystalhd
References
Summary
In this tutorial we learn how to install libcrystalhd
on AlmaLinux 8 using yum and dnf.