How To Install jscommunicator-web-phone on Ubuntu 18.04

In this tutorial we learn how to install jscommunicator-web-phone on Ubuntu 18.04. jscommunicator-web-phone is Basic SIP video-phone web page using WebRTC

Introduction

In this tutorial we learn how to install jscommunicator-web-phone on Ubuntu 18.04.

What is jscommunicator-web-phone

jscommunicator-web-phone is:

HTML5 SIP client entirely written in JavaScript for integration in any web site, incude a blog, CMS or web application. Requires a modern WebRTC capable web browser and a SIP server/proxy supporting the SIP over WebSockets transport.

This package provides a basic HTML implementation of a phone that can be published through a web server such as Apache.

There are three methods to install jscommunicator-web-phone on Ubuntu 18.04. We can use apt-get, apt and aptitude. In the following sections we will describe each method. You can choose one of them.

Install jscommunicator-web-phone Using apt-get

Update apt database with apt-get using the following command.

sudo apt-get update

After updating apt database, We can install jscommunicator-web-phone using apt-get by running the following command:

sudo apt-get -y install jscommunicator-web-phone

Install jscommunicator-web-phone Using apt

Update apt database with apt using the following command.

sudo apt update

After updating apt database, We can install jscommunicator-web-phone using apt by running the following command:

sudo apt -y install jscommunicator-web-phone

Install jscommunicator-web-phone Using aptitude

If you want to follow this method, you might need to install aptitude first since aptitude is usually not installed by default on Ubuntu. Update apt database with aptitude using the following command.

sudo aptitude update

After updating apt database, We can install jscommunicator-web-phone using aptitude by running the following command:

sudo aptitude -y install jscommunicator-web-phone

How To Uninstall jscommunicator-web-phone on Ubuntu 18.04

To uninstall only the jscommunicator-web-phone package we can use the following command:

sudo apt-get remove jscommunicator-web-phone

Uninstall jscommunicator-web-phone And Its Dependencies

To uninstall jscommunicator-web-phone and its dependencies that are no longer needed by Ubuntu 18.04, we can use the command below:

sudo apt-get -y autoremove jscommunicator-web-phone

Remove jscommunicator-web-phone Configurations and Data

To remove jscommunicator-web-phone configuration and data from Ubuntu 18.04 we can use the following command:

sudo apt-get -y purge jscommunicator-web-phone

Remove jscommunicator-web-phone configuration, data, and all of its dependencies

We can use the following command to remove jscommunicator-web-phone configurations, data and all of its dependencies, we can use the following command:

sudo apt-get -y autoremove --purge jscommunicator-web-phone

References

Summary

In this tutorial we learn how to install jscommunicator-web-phone package on Ubuntu 18.04 using different package management tools: apt, apt-get and aptitude.