How To Install nheko on Kali Linux
Introduction
In this tutorial we learn how to install nheko on Kali Linux.
What is nheko
nheko is:
Nheko is a Qt-based chat client for Matrix, an open, federated communications protocol. The motivation behind the project is to provide a native desktop app for Matrix that feels more like a mainstream chat app and less like an IRC client.
There are three methods to install nheko 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 nheko Using apt-get
Update apt database with apt-get using the following command.
sudo apt-get updateAfter updating apt database, We can install nheko using apt-get by running the following command:
sudo apt-get -y install nhekoInstall nheko Using apt
Update apt database with apt using the following command.
sudo apt updateAfter updating apt database, We can install nheko using apt by running the following command:
sudo apt -y install nhekoInstall nheko 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 nheko using aptitude by running the following command:
sudo aptitude -y install nhekoHow To Uninstall nheko on Kali Linux
To uninstall only the nheko package we can use the following command:
sudo apt-get remove nhekoUninstall nheko And Its Dependencies
To uninstall nheko and its dependencies that are no longer needed by Kali Linux, we can use the command below:
sudo apt-get -y autoremove nhekoRemove nheko Configurations and Data
To remove nheko configuration and data from Kali Linux we can use the following command:
sudo apt-get -y purge nhekoRemove nheko configuration, data, and all of its dependencies
We can use the following command to remove nheko configurations, data and all of its dependencies, we can use the following command:
sudo apt-get -y autoremove --purge nhekoDependencies
nheko have the following dependencies:
- libboost-iostreams1.74.0
- libboost-thread1.74.0
- libc6
- libcmark0.29.0
- libfmt7
- libgcc-s1
- liblmdb0
- libolm3
- libqt5core5a
- libqt5dbus5
- libqt5gui5
- libqt5network5
- libqt5qml5
- libqt5quick5
- libqt5quickwidgets5
- libqt5widgets5
- libsodium23
- libspdlog1-fmt7
- libssl1.1
- libstdc++6
- qml-module-qt-labs-settings
- qml-module-qtgraphicaleffects
- qml-module-qtmultimedia
- qml-module-qtquick2
- qml-module-qtquick-controls2
- qml-module-qtquick-layouts
- qml-module-qtquick-window2
References
Summary
In this tutorial we learn how to install nheko package on Kali Linux using different package management tools: apt, apt-get and aptitude.