How To Install minbif-common on Debian 9
Introduction
In this tutorial we learn how to install minbif-common
on Debian 9.
What is minbif-common
minbif-common is:
Minbif is an IRC gateway to IM networks which provides the following features:
- Minbif uses a library which abstracts all IM calls, and has several plugins to support more than 15 IM protocols (IRC included!);
- Two modes: inetd and daemon fork;
- Only IRC commands are used to control Minbif;
- Certificates check;
- Buddies are IRC users;
- Each account has a status channel. You see in all connected buddies, and their status on it;
- Add and remove buddies from list with /INVITE and /KICK commands;
- Blocked users are bans on the account’s status channel;
- Display when a buddy is typing a message;
- Can chat with someone who is not in your buddy list;
- You can see buddies’ icons (with libcaca) or download them;
- DCC SEND an image to set your icon on IM networks;
- Display extended information about buddies with /WII command;
- Support away messages;
- Can send and receive files, which are sent or received to/from your IRC client with DCC SEND;
- Conversation channels are supported;
- Auto-rejoin conversation channels at connection;
- Display list of channels on an IM account with /LIST;
- irssi scripts to increase your user experience of minbif;
- CoinCoin plugin for libpurple.
This package contains the documentation and common plugins.
There are three methods to install minbif-common
on Debian 9. We can use apt-get
, apt
and aptitude
. In the following sections we will describe each method. You can choose one of them.
Install minbif-common Using apt-get
Update apt database with apt-get
using the following command.
sudo apt-get update
After updating apt database, We can install minbif-common
using apt-get
by running the following command:
sudo apt-get -y install minbif-common
Install minbif-common Using apt
Update apt database with apt
using the following command.
sudo apt update
After updating apt database, We can install minbif-common
using apt
by running the following command:
sudo apt -y install minbif-common
Install minbif-common 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 Debian. Update apt database with aptitude
using the following command.
sudo aptitude update
After updating apt database, We can install minbif-common
using aptitude
by running the following command:
sudo aptitude -y install minbif-common
How To Uninstall minbif-common on Debian 9
To uninstall only the minbif-common
package we can use the following command:
sudo apt-get remove minbif-common
Uninstall minbif-common And Its Dependencies
To uninstall minbif-common
and its dependencies that are no longer needed by Debian 9, we can use the command below:
sudo apt-get -y autoremove minbif-common
Remove minbif-common Configurations and Data
To remove minbif-common
configuration and data from Debian 9 we can use the following command:
sudo apt-get -y purge minbif-common
Remove minbif-common configuration, data, and all of its dependencies
We can use the following command to remove minbif-common
configurations, data and all of its dependencies, we can use the following command:
sudo apt-get -y autoremove --purge minbif-common
Dependencies
minbif-common have the following dependencies:
References
Summary
In this tutorial we learn how to install minbif-common
package on Debian 9 using different package management tools: apt
, apt-get
and aptitude
.