How To Install libiec61883 on Rocky Linux 8
Introduction
In this tutorial we learn how to install libiec61883
on Rocky Linux 8.
What is libiec61883
The libiec61883 library provides an higher level API for streaming DV, MPEG-2 and audio over IEEE1394. Based on the libraw1394 isochronous functionality, this library acts as a filter that accepts DV-frames, MPEG-2 frames or audio samples from the application and breaks these down to isochronous packets, which are transmitted using libraw1394.
We can use yum
or dnf
to install libiec61883
on Rocky Linux 8. In this tutorial we discuss both methods but you only need to choose one of method to install libiec61883.
Install libiec61883 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 libiec61883
using dnf
by running the following command:
sudo dnf -y install libiec61883
Install libiec61883 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 libiec61883
using yum
by running the following command:
sudo yum -y install libiec61883
How To Uninstall libiec61883 on Rocky Linux 8
To uninstall only the libiec61883
package we can use the following command:
sudo dnf remove libiec61883
libiec61883 Package Contents on Rocky Linux 8
/usr/lib/.build-id
/usr/lib/.build-id/2e
/usr/lib/.build-id/2e/9dbc5ac7dd3a9b45ec566e4719e91799eaa400
/usr/lib64/libiec61883.so.0
/usr/lib64/libiec61883.so.0.1.1
/usr/share/doc/libiec61883
/usr/share/doc/libiec61883/AUTHORS
/usr/share/doc/libiec61883/COPYING
/usr/share/doc/libiec61883/NEWS
/usr/share/doc/libiec61883/README
/usr/lib/.build-id
/usr/lib/.build-id/f4
/usr/lib/.build-id/f4/2b56b4f1c87315ebc6a06eb5fea765ba49e1a8
/usr/lib/libiec61883.so.0
/usr/lib/libiec61883.so.0.1.1
/usr/share/doc/libiec61883
/usr/share/doc/libiec61883/AUTHORS
/usr/share/doc/libiec61883/COPYING
/usr/share/doc/libiec61883/NEWS
/usr/share/doc/libiec61883/README
References
Summary
In this tutorial we learn how to install libiec61883
on Rocky Linux 8 using yum and dnf.