How To Install libosip2 on Fedora 34
Introduction
In this tutorial we learn how to install libosip2
on Fedora 34.
What is libosip2
oSIP is an implementation of SIP. SIP stands for the Session Initiation Protocol and is described by the rfc3261 (wich deprecates rfc2543). This library aims to provide multimedia and telecom software developers an easy and powerful interface to initiate and control SIP based sessions in their applications. SIP is a open standard replacement from IETF for H.323. libosip2 3.6.0 20.fc34 x86_64 106 k libosip2-3.6.0-20.fc34.src.rpm fedora oSIP is an implementation of SIP http LGPLv2+ oSIP is an implementation of SIP. SIP stands for the Session Initiation Protocol and is described by the rfc3261 (wich deprecates rfc2543). This library aims to provide multimedia and telecom software developers an easy and powerful interface to initiate and control SIP based sessions in their applications. SIP is a open standard replacement from IETF for H.323.
We can use yum
or dnf
to install libosip2
on Fedora 34. In this tutorial we discuss both methods but you only need to choose one of method to install libosip2.
Install libosip2 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 libosip2
using dnf
by running the following command:
sudo dnf -y install libosip2
Install libosip2 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 libosip2
using yum
by running the following command:
sudo yum -y install libosip2
How To Uninstall libosip2 on Fedora 34
To uninstall only the libosip2
package we can use the following command:
sudo dnf remove libosip2
libosip2 Package Contents on Fedora 34
/usr/lib/.build-id
/usr/lib/.build-id/04
/usr/lib/.build-id/04/60e2877a0e4a01f29b89830ef695b66dfcd2db
/usr/lib/.build-id/78
/usr/lib/.build-id/78/f9e15b91af23b2797997c1f7cc11539f96b722
/usr/lib64/libosip2.so.7
/usr/lib64/libosip2.so.7.2.0
/usr/lib64/libosipparser2.so.7
/usr/lib64/libosipparser2.so.7.2.0
/usr/share/doc/libosip2
/usr/share/doc/libosip2/AUTHORS
/usr/share/doc/libosip2/BUGS
/usr/share/doc/libosip2/COPYING
/usr/share/doc/libosip2/ChangeLog
/usr/share/doc/libosip2/FEATURES
/usr/share/doc/libosip2/HISTORY
/usr/share/doc/libosip2/NEWS
/usr/share/doc/libosip2/README
/usr/share/doc/libosip2/TODO
/usr/lib/.build-id
/usr/lib/.build-id/4f
/usr/lib/.build-id/4f/32f03ce57d33da36d1ecc4d5372d8b5b05a589
/usr/lib/.build-id/50
/usr/lib/.build-id/50/f3f69618c9eff4f2636a242dfc69451a082efb
/usr/lib/libosip2.so.7
/usr/lib/libosip2.so.7.2.0
/usr/lib/libosipparser2.so.7
/usr/lib/libosipparser2.so.7.2.0
/usr/share/doc/libosip2
/usr/share/doc/libosip2/AUTHORS
/usr/share/doc/libosip2/BUGS
/usr/share/doc/libosip2/COPYING
/usr/share/doc/libosip2/ChangeLog
/usr/share/doc/libosip2/FEATURES
/usr/share/doc/libosip2/HISTORY
/usr/share/doc/libosip2/NEWS
/usr/share/doc/libosip2/README
/usr/share/doc/libosip2/TODO
References
- [libosip2 website](http://www.gnu.org/software/osip/ http://www.gnu.org/software/osip/)
Summary
In this tutorial we learn how to install libosip2
on Fedora 34 using yum and dnf.