How To Install smuxi on Kali Linux

In this tutorial we learn how to install smuxi on Kali Linux. smuxi is graphical IRC client

Introduction

In this tutorial we learn how to install smuxi on Kali Linux.

What is smuxi

smuxi 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 is a metapackage which depends on the default flavor of Smuxi, which is the GNOME frontend with Twitter and enhanced IRC support.

There are three methods to install smuxi on Kali Linux. 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 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 using apt-get by running the following command:

sudo apt-get -y install smuxi

Install smuxi Using apt

Update apt database with apt using the following command.

sudo apt update

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

sudo apt -y install smuxi

Install smuxi Using aptitude

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

sudo aptitude update

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

sudo aptitude -y install smuxi

How To Uninstall smuxi on Kali Linux

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

sudo apt-get remove smuxi

Uninstall smuxi And Its Dependencies

To uninstall smuxi and its dependencies that are no longer needed by Kali Linux, we can use the command below:

sudo apt-get -y autoremove smuxi

Remove smuxi Configurations and Data

To remove smuxi configuration and data from Kali Linux we can use the following command:

sudo apt-get -y purge smuxi

Remove smuxi configuration, data, and all of its dependencies

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

sudo apt-get -y autoremove --purge smuxi

Dependencies

smuxi have the following dependencies:

References

Summary

In this tutorial we learn how to install smuxi package on Kali Linux using different package management tools: apt, apt-get and aptitude.