How To Install ortp on Fedora 34
Introduction
In this tutorial we learn how to install ortp
on Fedora 34.
What is ortp
oRTP is a C library that implements RTP (RFC3550). ortp 2 0.23.0 7.fc34 x86_64 86 k ortp-0.23.0-7.fc34.src.rpm fedora A C library implementing the RTP protocol (RFC3550) http LGPLv2+ and VSL oRTP is a C library that implements RTP (RFC3550).
We can use yum
or dnf
to install ortp
on Fedora 34. In this tutorial we discuss both methods but you only need to choose one of method to install ortp.
Install ortp 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 ortp
using dnf
by running the following command:
sudo dnf -y install ortp
Install ortp 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 ortp
using yum
by running the following command:
sudo yum -y install ortp
How To Uninstall ortp on Fedora 34
To uninstall only the ortp
package we can use the following command:
sudo dnf remove ortp
ortp Package Contents on Fedora 34
/usr/lib/.build-id
/usr/lib/.build-id/15
/usr/lib/.build-id/15/cf9edc9d98d00f53d22eecbd723ee43569646c
/usr/lib64/libortp.so.9
/usr/lib64/libortp.so.9.0.0
/usr/share/doc/ortp
/usr/share/doc/ortp/AUTHORS
/usr/share/doc/ortp/ChangeLog
/usr/share/doc/ortp/NEWS
/usr/share/doc/ortp/README
/usr/share/doc/ortp/TODO
/usr/share/licenses/ortp
/usr/share/licenses/ortp/COPYING
/usr/lib/.build-id
/usr/lib/.build-id/89
/usr/lib/.build-id/89/173656bd9c241689761b2f8729a32a04b670e9
/usr/lib/libortp.so.9
/usr/lib/libortp.so.9.0.0
/usr/share/doc/ortp
/usr/share/doc/ortp/AUTHORS
/usr/share/doc/ortp/ChangeLog
/usr/share/doc/ortp/NEWS
/usr/share/doc/ortp/README
/usr/share/doc/ortp/TODO
/usr/share/licenses/ortp
/usr/share/licenses/ortp/COPYING
References
- [ortp website](http://www.linphone.org/eng/documentation/dev/ortp.html http://www.linphone.org/eng/documentation/dev/ortp.html)
Summary
In this tutorial we learn how to install ortp
on Fedora 34 using yum and dnf.