How To Install nurpawiki on Kali Linux
Introduction
In this tutorial we learn how to install nurpawiki
on Kali Linux.
What is nurpawiki
nurpawiki is:
Nurpawiki is a personal information manager (PIM) application that combines a wiki, a to-do list and a simple scheduler to help you get organized. It aims to ease note taking and action planning. Actions (to-dos) are always associated with notes or plans (wiki pages).
Nurpawiki is available as an Eliom module for the Ocsigen web server, and uses PostgreSQL as backend.
There are three methods to install nurpawiki
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 nurpawiki Using apt-get
Update apt database with apt-get
using the following command.
sudo apt-get update
After updating apt database, We can install nurpawiki
using apt-get
by running the following command:
sudo apt-get -y install nurpawiki
Install nurpawiki Using apt
Update apt database with apt
using the following command.
sudo apt update
After updating apt database, We can install nurpawiki
using apt
by running the following command:
sudo apt -y install nurpawiki
Install nurpawiki 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 nurpawiki
using aptitude
by running the following command:
sudo aptitude -y install nurpawiki
How To Uninstall nurpawiki on Kali Linux
To uninstall only the nurpawiki
package we can use the following command:
sudo apt-get remove nurpawiki
Uninstall nurpawiki And Its Dependencies
To uninstall nurpawiki
and its dependencies that are no longer needed by Kali Linux, we can use the command below:
sudo apt-get -y autoremove nurpawiki
Remove nurpawiki Configurations and Data
To remove nurpawiki
configuration and data from Kali Linux we can use the following command:
sudo apt-get -y purge nurpawiki
Remove nurpawiki configuration, data, and all of its dependencies
We can use the following command to remove nurpawiki
configurations, data and all of its dependencies, we can use the following command:
sudo apt-get -y autoremove --purge nurpawiki
Dependencies
nurpawiki have the following dependencies:
- ocsigenserver
- libeliom-ocaml-dev
- libcalendar-ocaml-o8e72
- libdomain-name-ocaml-j49t4
- libextlib-ocaml-ngq70
- libfmt-ocaml-rqkp6
- libipaddr-ocaml-796a6
- libjs-of-ocaml-k9qe1
- liblwt-log-ocaml-1f1y2
- liblwt-ocaml-dt6l9
- liblwt-ssl-ocaml-um870
- libocamlnet-ocaml-2d6s9
- libocsigenserver-ocaml-mpwx0
- libpcre-ocaml-l5rk6
- libpostgresql-ocaml-the27
- libreact-ocaml-pdm50
- libresult-ocaml-ki2r2
- libssl-ocaml-h4gq8
- libtyxml-ocaml-pen41
- libxml-light-ocaml-1v0o5
- ocaml-base-nox-4.11.1
References
Summary
In this tutorial we learn how to install nurpawiki
package on Kali Linux using different package management tools: apt
, apt-get
and aptitude
.