How To Install wmcoincoin on Debian 10
Introduction
In this tutorial we learn how to install wmcoincoin
on Debian 10.
What is wmcoincoin
wmcoincoin is:
WMCoinCoin allows you to browse linuxfr.org and other sites based on DaCode 1.4, Templeet and many other webchat engines. It will:
- display website news with new items displayed prominently;
- display private messages, showing the appropriate web page when new messages are received;
- allow tabbed browsing of multiple sites;
- display the board/webchat and allow new messages to be posted, with the ability to detect, enhance or kill trolls.
WMCoinCoin, while being full of stupid things, is a real advanced chatting client, using HTTP, with low bandwidth requirements.
There are three methods to install wmcoincoin
on Debian 10. We can use apt-get
, apt
and aptitude
. In the following sections we will describe each method. You can choose one of them.
Install wmcoincoin Using apt-get
Update apt database with apt-get
using the following command.
sudo apt-get update
After updating apt database, We can install wmcoincoin
using apt-get
by running the following command:
sudo apt-get -y install wmcoincoin
Install wmcoincoin Using apt
Update apt database with apt
using the following command.
sudo apt update
After updating apt database, We can install wmcoincoin
using apt
by running the following command:
sudo apt -y install wmcoincoin
Install wmcoincoin 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 wmcoincoin
using aptitude
by running the following command:
sudo aptitude -y install wmcoincoin
How To Uninstall wmcoincoin on Debian 10
To uninstall only the wmcoincoin
package we can use the following command:
sudo apt-get remove wmcoincoin
Uninstall wmcoincoin And Its Dependencies
To uninstall wmcoincoin
and its dependencies that are no longer needed by Debian 10, we can use the command below:
sudo apt-get -y autoremove wmcoincoin
Remove wmcoincoin Configurations and Data
To remove wmcoincoin
configuration and data from Debian 10 we can use the following command:
sudo apt-get -y purge wmcoincoin
Remove wmcoincoin configuration, data, and all of its dependencies
We can use the following command to remove wmcoincoin
configurations, data and all of its dependencies, we can use the following command:
sudo apt-get -y autoremove --purge wmcoincoin
Dependencies
wmcoincoin have the following dependencies:
- libatk1.0-0
- libc6
- libfreetype6
- libgdk-pixbuf2.0-0
- libglib2.0-0
- libgtk2.0-0
- libimlib2
- libpango-1.0-0
- libx11-6
- libxext6
- libxft2
- libxinerama1
- libxmu6
References
Summary
In this tutorial we learn how to install wmcoincoin
package on Debian 10 using different package management tools: apt
, apt-get
and aptitude
.