How To Install seren on CentOS 7

In this tutorial we learn how to install seren on CentOS 7. seren is Simple VoIP program to create conferences from the terminal

Introduction

In this tutorial we learn how to install seren on CentOS 7.

What is seren

Seren is a simple VoIP program based on the Opus codec that allows you to create a voice conference from the terminal, with up to 10 participants, without having to register accounts, exchange emails, or add people to contact lists. All you need to join an existing conference is the host name or IP address of one of the participants. Seren creates a dynamic peer-to-peer network of equivalent nodes which exchange text and audio data using a UDP connection, and offers the user the ability to change the quality/bitrate on the fly, encrypt the traffic and record the calls.

We can use yum or dnf to install seren on CentOS 7. In this tutorial we discuss both methods but you only need to choose one of method to install seren.

Install seren on CentOS 7 Using yum

Update yum database with yum using the following command.

sudo yum makecache

After updating yum database, We can install seren using yum by running the following command:

sudo yum -y install seren

Install seren on CentOS 7 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 seren using dnf by running the following command:

sudo dnf -y install seren

How To Uninstall seren on CentOS 7

To uninstall only the seren package we can use the following command:

sudo dnf remove seren

References

Summary

In this tutorial we learn how to install seren on CentOS 7 using yum and dnf.