How To Install libpri on Fedora 34
Introduction
In this tutorial we learn how to install libpri
on Fedora 34.
What is libpri
libpri is a C implementation of the Primary Rate ISDN specification. It was based on the Bellcore specification SR-NWT-002343 for National ISDN. As of May 12, 2001, it has been tested work to with NI-2, Nortel DMS-100, and Lucent 5E Custom protocols on switches from Nortel and Lucent. libpri 1.6.0 13.fc34 x86_64 231 k libpri-1.6.0-13.fc34.src.rpm fedora An implementation of Primary Rate ISDN https GPLv2+ libpri is a C implementation of the Primary Rate ISDN specification. It was based on the Bellcore specification SR-NWT-002343 for National ISDN. As of May 12, 2001, it has been tested work to with NI-2, Nortel DMS-100, and Lucent 5E Custom protocols on switches from Nortel and Lucent.
We can use yum
or dnf
to install libpri
on Fedora 34. In this tutorial we discuss both methods but you only need to choose one of method to install libpri.
Install libpri 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 libpri
using dnf
by running the following command:
sudo dnf -y install libpri
Install libpri 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 libpri
using yum
by running the following command:
sudo yum -y install libpri
How To Uninstall libpri on Fedora 34
To uninstall only the libpri
package we can use the following command:
sudo dnf remove libpri
libpri Package Contents on Fedora 34
/usr/lib/.build-id
/usr/lib/.build-id/2a
/usr/lib/.build-id/2a/2d4bcdbb5875401786e0584dc459273fe303db
/usr/lib/libpri.so.1
/usr/lib/libpri.so.1.4
/usr/share/doc/libpri
/usr/share/doc/libpri/ChangeLog
/usr/share/doc/libpri/README
/usr/share/licenses/libpri
/usr/share/licenses/libpri/LICENSE
/usr/lib/.build-id
/usr/lib/.build-id/b8
/usr/lib/.build-id/b8/bcd2825778d06554306d985146dfb9dac62af7
/usr/lib64/libpri.so.1
/usr/lib64/libpri.so.1.4
/usr/share/doc/libpri
/usr/share/doc/libpri/ChangeLog
/usr/share/doc/libpri/README
/usr/share/licenses/libpri
/usr/share/licenses/libpri/LICENSE
References
- [libpri website](https://www.asterisk.org/ https://www.asterisk.org/)
Summary
In this tutorial we learn how to install libpri
on Fedora 34 using yum and dnf.