How To Install libsrtp on Fedora 34
Introduction
In this tutorial we learn how to install libsrtp
on Fedora 34.
What is libsrtp
This package provides an implementation of the Secure Real-time Transport Protocol (SRTP), the Universal Security Transform (UST), and a supporting cryptographic kernel. libsrtp 2.3.0 6.fc34 x86_64 58 k libsrtp-2.3.0-6.fc34.src.rpm updates An implementation of the Secure Real-time Transport Protocol (SRTP) https BSD This package provides an implementation of the Secure Real-time Transport Protocol (SRTP), the Universal Security Transform (UST), and a supporting cryptographic kernel.
We can use yum
or dnf
to install libsrtp
on Fedora 34. In this tutorial we discuss both methods but you only need to choose one of method to install libsrtp.
Install libsrtp 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 libsrtp
using dnf
by running the following command:
sudo dnf -y install libsrtp
Install libsrtp 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 libsrtp
using yum
by running the following command:
sudo yum -y install libsrtp
How To Uninstall libsrtp on Fedora 34
To uninstall only the libsrtp
package we can use the following command:
sudo dnf remove libsrtp
libsrtp Package Contents on Fedora 34
/usr/lib/.build-id
/usr/lib/.build-id/00
/usr/lib/.build-id/00/e2f879d1ae26fd5dd8b1337f5c0d2c4232bdc2
/usr/lib64/libsrtp2.so.1
/usr/lib64/libsrtp2.so.1.0.0
/usr/share/doc/libsrtp
/usr/share/doc/libsrtp/CHANGES
/usr/share/doc/libsrtp/README.md
/usr/share/licenses/libsrtp
/usr/share/licenses/libsrtp/LICENSE
/usr/lib/.build-id
/usr/lib/.build-id/51
/usr/lib/.build-id/51/3280dc10cc5d13b5493180f85a2db6ae922cd8
/usr/lib/libsrtp2.so.1
/usr/lib/libsrtp2.so.1.0.0
/usr/share/doc/libsrtp
/usr/share/doc/libsrtp/CHANGES
/usr/share/doc/libsrtp/README.md
/usr/share/licenses/libsrtp
/usr/share/licenses/libsrtp/LICENSE
/usr/lib/.build-id
/usr/lib/.build-id/7f
/usr/lib/.build-id/7f/5829432033adc9cc9540c2a4066241456959e6
/usr/lib64/libsrtp2.so.1
/usr/lib64/libsrtp2.so.1.0.0
/usr/share/doc/libsrtp
/usr/share/doc/libsrtp/CHANGES
/usr/share/doc/libsrtp/README.md
/usr/share/licenses/libsrtp
/usr/share/licenses/libsrtp/LICENSE
/usr/lib/.build-id
/usr/lib/.build-id/8f
/usr/lib/.build-id/8f/f8911d39346674419e88910d59d8bf32aa9228
/usr/lib/libsrtp2.so.1
/usr/lib/libsrtp2.so.1.0.0
/usr/share/doc/libsrtp
/usr/share/doc/libsrtp/CHANGES
/usr/share/doc/libsrtp/README.md
/usr/share/licenses/libsrtp
/usr/share/licenses/libsrtp/LICENSE
References
- [libsrtp website](https://github.com/cisco/libsrtp https://github.com/cisco/libsrtp)
Summary
In this tutorial we learn how to install libsrtp
on Fedora 34 using yum and dnf.