How To Install libdvbpsi on Fedora 34
Introduction
In this tutorial we learn how to install libdvbpsi
on Fedora 34.
What is libdvbpsi
libdvbpsi is a very simple and fully portable library designed for MPEG TS and DVB PSI table decoding and generation. libdvbpsi 1.3.3 4.fc34 x86_64 102 k libdvbpsi-1.3.3-4.fc34.src.rpm fedora Library for MPEG TS and DVB PSI tables decoding and generation http LGPLv2+ libdvbpsi is a very simple and fully portable library designed for MPEG TS and DVB PSI table decoding and generation.
We can use yum
or dnf
to install libdvbpsi
on Fedora 34. In this tutorial we discuss both methods but you only need to choose one of method to install libdvbpsi.
Install libdvbpsi 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 libdvbpsi
using dnf
by running the following command:
sudo dnf -y install libdvbpsi
Install libdvbpsi 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 libdvbpsi
using yum
by running the following command:
sudo yum -y install libdvbpsi
How To Uninstall libdvbpsi on Fedora 34
To uninstall only the libdvbpsi
package we can use the following command:
sudo dnf remove libdvbpsi
libdvbpsi Package Contents on Fedora 34
/usr/lib/.build-id
/usr/lib/.build-id/6a
/usr/lib/.build-id/6a/c32b0a6e2c414641db32a191d21b02f2b6c778
/usr/lib/libdvbpsi.so.10
/usr/lib/libdvbpsi.so.10.0.0
/usr/share/doc/libdvbpsi
/usr/share/doc/libdvbpsi/AUTHORS
/usr/share/doc/libdvbpsi/ChangeLog
/usr/share/doc/libdvbpsi/README
/usr/share/licenses/libdvbpsi
/usr/share/licenses/libdvbpsi/COPYING
/usr/lib/.build-id
/usr/lib/.build-id/e9
/usr/lib/.build-id/e9/c51be3a039587ffec3ebc1ab00230614edfd16
/usr/lib64/libdvbpsi.so.10
/usr/lib64/libdvbpsi.so.10.0.0
/usr/share/doc/libdvbpsi
/usr/share/doc/libdvbpsi/AUTHORS
/usr/share/doc/libdvbpsi/ChangeLog
/usr/share/doc/libdvbpsi/README
/usr/share/licenses/libdvbpsi
/usr/share/licenses/libdvbpsi/COPYING
References
- [libdvbpsi website](http://www.videolan.org/developers/libdvbpsi.html http://www.videolan.org/developers/libdvbpsi.html)
Summary
In this tutorial we learn how to install libdvbpsi
on Fedora 34 using yum and dnf.