How To Install nixnote2 on Kali Linux
Introduction
In this tutorial we learn how to install nixnote2
on Kali Linux.
What is nixnote2
nixnote2 is:
NixNote is a client for the Evernote service (www.evernote.com). It will allow synchronization and editing of notes from your local system.
Once known as “NeverNote”, this software was rewritten in C++/Qt to provide a native user experience.
There are three methods to install nixnote2
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 nixnote2 Using apt-get
Update apt database with apt-get
using the following command.
sudo apt-get update
After updating apt database, We can install nixnote2
using apt-get
by running the following command:
sudo apt-get -y install nixnote2
Install nixnote2 Using apt
Update apt database with apt
using the following command.
sudo apt update
After updating apt database, We can install nixnote2
using apt
by running the following command:
sudo apt -y install nixnote2
Install nixnote2 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 nixnote2
using aptitude
by running the following command:
sudo aptitude -y install nixnote2
How To Uninstall nixnote2 on Kali Linux
To uninstall only the nixnote2
package we can use the following command:
sudo apt-get remove nixnote2
Uninstall nixnote2 And Its Dependencies
To uninstall nixnote2
and its dependencies that are no longer needed by Kali Linux, we can use the command below:
sudo apt-get -y autoremove nixnote2
Remove nixnote2 Configurations and Data
To remove nixnote2
configuration and data from Kali Linux we can use the following command:
sudo apt-get -y purge nixnote2
Remove nixnote2 configuration, data, and all of its dependencies
We can use the following command to remove nixnote2
configurations, data and all of its dependencies, we can use the following command:
sudo apt-get -y autoremove --purge nixnote2
Dependencies
nixnote2 have the following dependencies:
- libqt5sql5-sqlite
- tidy
- libc6
- libcurl4
- libgcc-s1
- libhunspell-1.7-0
- libpoppler-qt5-1
- libqt5core5a
- libqt5gui5
- libqt5network5
- libqt5printsupport5
- libqt5qml5
- libqt5sql5
- libqt5webkit5
- libqt5widgets5
- libqt5xml5
- libstdc++6
- libtidy5deb1
References
Summary
In this tutorial we learn how to install nixnote2
package on Kali Linux using different package management tools: apt
, apt-get
and aptitude
.