How To Install libsejda-eventstudio-java on Ubuntu 18.04

In this tutorial we learn how to install libsejda-eventstudio-java on Ubuntu 18.04. libsejda-eventstudio-java is pure Java event bus implementation

Introduction

In this tutorial we learn how to install libsejda-eventstudio-java on Ubuntu 18.04.

What is libsejda-eventstudio-java

libsejda-eventstudio-java is:

EventStudio is a pure Java event bus implementation providing the publish-subscribe pattern with events queue capabilities for intra-jvm event communication. It is thread safe, has a very simple API and any POJO can be an event.

There are three methods to install libsejda-eventstudio-java 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 libsejda-eventstudio-java Using apt-get

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

sudo apt-get update

After updating apt database, We can install libsejda-eventstudio-java using apt-get by running the following command:

sudo apt-get -y install libsejda-eventstudio-java

Install libsejda-eventstudio-java Using apt

Update apt database with apt using the following command.

sudo apt update

After updating apt database, We can install libsejda-eventstudio-java using apt by running the following command:

sudo apt -y install libsejda-eventstudio-java

Install libsejda-eventstudio-java 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 libsejda-eventstudio-java using aptitude by running the following command:

sudo aptitude -y install libsejda-eventstudio-java

How To Uninstall libsejda-eventstudio-java on Ubuntu 18.04

To uninstall only the libsejda-eventstudio-java package we can use the following command:

sudo apt-get remove libsejda-eventstudio-java

Uninstall libsejda-eventstudio-java And Its Dependencies

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

sudo apt-get -y autoremove libsejda-eventstudio-java

Remove libsejda-eventstudio-java Configurations and Data

To remove libsejda-eventstudio-java configuration and data from Ubuntu 18.04 we can use the following command:

sudo apt-get -y purge libsejda-eventstudio-java

Remove libsejda-eventstudio-java configuration, data, and all of its dependencies

We can use the following command to remove libsejda-eventstudio-java configurations, data and all of its dependencies, we can use the following command:

sudo apt-get -y autoremove --purge libsejda-eventstudio-java

References

Summary

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