How To Install wmcoincoin on Kali Linux
Introduction
In this tutorial we learn how to install wmcoincoin on Kali Linux.
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 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 wmcoincoin Using apt-get
Update apt database with apt-get using the following command.
sudo apt-get updateAfter updating apt database, We can install wmcoincoin using apt-get by running the following command:
sudo apt-get -y install wmcoincoinInstall wmcoincoin Using apt
Update apt database with apt using the following command.
sudo apt updateAfter updating apt database, We can install wmcoincoin using apt by running the following command:
sudo apt -y install wmcoincoinInstall wmcoincoin 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 updateAfter updating apt database, We can install wmcoincoin using aptitude by running the following command:
sudo aptitude -y install wmcoincoinHow To Uninstall wmcoincoin on Kali Linux
To uninstall only the wmcoincoin package we can use the following command:
sudo apt-get remove wmcoincoinUninstall wmcoincoin And Its Dependencies
To uninstall wmcoincoin and its dependencies that are no longer needed by Kali Linux, we can use the command below:
sudo apt-get -y autoremove wmcoincoinRemove wmcoincoin Configurations and Data
To remove wmcoincoin configuration and data from Kali Linux we can use the following command:
sudo apt-get -y purge wmcoincoinRemove 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 wmcoincoinDependencies
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 Kali Linux using different package management tools: apt, apt-get and aptitude.