How To Install mobyle-programs on Ubuntu 18.04

In this tutorial we learn how to install mobyle-programs on Ubuntu 18.04. mobyle-programs is program descriptions for the mobyle portal

Introduction

In this tutorial we learn how to install mobyle-programs on Ubuntu 18.04.

What is mobyle-programs

mobyle-programs is:

Set of programs for the mobyle framework. Those programs can be deployed to be used on the portal. However those depends on a number of executables that should be installed on the server. This set can be used as a starter.

There are three methods to install mobyle-programs 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 mobyle-programs Using apt-get

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

sudo apt-get update

After updating apt database, We can install mobyle-programs using apt-get by running the following command:

sudo apt-get -y install mobyle-programs

Install mobyle-programs Using apt

Update apt database with apt using the following command.

sudo apt update

After updating apt database, We can install mobyle-programs using apt by running the following command:

sudo apt -y install mobyle-programs

Install mobyle-programs 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 mobyle-programs using aptitude by running the following command:

sudo aptitude -y install mobyle-programs

How To Uninstall mobyle-programs on Ubuntu 18.04

To uninstall only the mobyle-programs package we can use the following command:

sudo apt-get remove mobyle-programs

Uninstall mobyle-programs And Its Dependencies

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

sudo apt-get -y autoremove mobyle-programs

Remove mobyle-programs Configurations and Data

To remove mobyle-programs configuration and data from Ubuntu 18.04 we can use the following command:

sudo apt-get -y purge mobyle-programs

Remove mobyle-programs configuration, data, and all of its dependencies

We can use the following command to remove mobyle-programs configurations, data and all of its dependencies, we can use the following command:

sudo apt-get -y autoremove --purge mobyle-programs

References

Summary

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