How To Install smuxi-frontend-gnome on Ubuntu 18.04

In this tutorial we learn how to install smuxi-frontend-gnome on Ubuntu 18.04. smuxi-frontend-gnome is GNOME frontend for Smuxi

Introduction

In this tutorial we learn how to install smuxi-frontend-gnome on Ubuntu 18.04.

What is smuxi-frontend-gnome

smuxi-frontend-gnome is:

Smuxi is an irssi-inspired, flexible, user-friendly and cross-platform IRC client for sophisticated users, targeting the GNOME desktop.

Smuxi is based on the client-server model: The core application (engine) can be placed onto a server which is connected to the Internet around-the-clock; one or more frontends then connect to the core. This way, the connection to IRC can be kept up even when all frontends have been closed. The combination of screen and irssi served as example for this architecture.

Smuxi also supports the regular single application mode. This behaves like a typical IRC client; it doesn’t need separate core management and utilizes a local engine that is used by the local frontend client.

This package contains the GNOME frontend of Smuxi, it can run either standalone using a local engine or connect to a running remote engine (server).

There are three methods to install smuxi-frontend-gnome 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 smuxi-frontend-gnome Using apt-get

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

sudo apt-get update

After updating apt database, We can install smuxi-frontend-gnome using apt-get by running the following command:

sudo apt-get -y install smuxi-frontend-gnome

Install smuxi-frontend-gnome Using apt

Update apt database with apt using the following command.

sudo apt update

After updating apt database, We can install smuxi-frontend-gnome using apt by running the following command:

sudo apt -y install smuxi-frontend-gnome

Install smuxi-frontend-gnome 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 smuxi-frontend-gnome using aptitude by running the following command:

sudo aptitude -y install smuxi-frontend-gnome

How To Uninstall smuxi-frontend-gnome on Ubuntu 18.04

To uninstall only the smuxi-frontend-gnome package we can use the following command:

sudo apt-get remove smuxi-frontend-gnome

Uninstall smuxi-frontend-gnome And Its Dependencies

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

sudo apt-get -y autoremove smuxi-frontend-gnome

Remove smuxi-frontend-gnome Configurations and Data

To remove smuxi-frontend-gnome configuration and data from Ubuntu 18.04 we can use the following command:

sudo apt-get -y purge smuxi-frontend-gnome

Remove smuxi-frontend-gnome configuration, data, and all of its dependencies

We can use the following command to remove smuxi-frontend-gnome configurations, data and all of its dependencies, we can use the following command:

sudo apt-get -y autoremove --purge smuxi-frontend-gnome

References

Summary

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