How To Install pjproject on CentOS 8
Introduction
In this tutorial we learn how to install pjproject on CentOS 8.
What is pjproject
This package provides the Open Source, comprehensive, high performance, small footprint multimedia communication libraries written in C language for building embedded/non-embedded VoIP applications. It contains - PJSIP - Open Source SIP Stack - PJMEDIA - Open Source Media Stack - PJNATH - Open Source NAT Traversal Helper Library - PJLIB-UTIL - Auxiliary Library - PJLIB - Ultra Portable Base Framework Library - PJSUA2 - Object Oriented abstractions layer for PJSUA
We can use yum or dnf to install pjproject on CentOS 8. In this tutorial we discuss both methods but you only need to choose one of method to install pjproject.
Install pjproject on CentOS 8 Using yum
Update yum database with yum using the following command.
sudo yum makecache
After updating yum database, We can install pjproject using yum by running the following command:
sudo yum -y install pjproject
Install pjproject on CentOS 8 Using dnf
If you don’t have dnf installed you can install DNF on CentOS 7 first.
Update yum database with dnf using the following command.
sudo dnf makecache
After updating yum database, We can install pjproject using dnf by running the following command:
sudo dnf -y install pjproject
How To Uninstall pjproject on CentOS 8
To uninstall only the pjproject package we can use the following command:
sudo dnf remove pjproject
References
Summary
In this tutorial we learn how to install pjproject on CentOS 8 using yum and dnf.