How To Install timekpr-next on Kali Linux
Introduction
In this tutorial we learn how to install timekpr-next
on Kali Linux.
What is timekpr-next
timekpr-next is:
Timekpr-nExT is a fresh, simple and easy-to-use time managing software that helps optimizing time spent at computer for Your subordinates, children or even for Yourself.
The software is targeted at parents or supervisors to optimize / limit time spent at computer as they see fit.
Please report any bugs to Timekpr-nExT??s bug tracker on Launchpad at: https://bugs.launchpad.net/timekpr-next/+bugs
There are three methods to install timekpr-next
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 timekpr-next Using apt-get
Update apt database with apt-get
using the following command.
sudo apt-get update
After updating apt database, We can install timekpr-next
using apt-get
by running the following command:
sudo apt-get -y install timekpr-next
Install timekpr-next Using apt
Update apt database with apt
using the following command.
sudo apt update
After updating apt database, We can install timekpr-next
using apt
by running the following command:
sudo apt -y install timekpr-next
Install timekpr-next 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 timekpr-next
using aptitude
by running the following command:
sudo aptitude -y install timekpr-next
How To Uninstall timekpr-next on Kali Linux
To uninstall only the timekpr-next
package we can use the following command:
sudo apt-get remove timekpr-next
Uninstall timekpr-next And Its Dependencies
To uninstall timekpr-next
and its dependencies that are no longer needed by Kali Linux, we can use the command below:
sudo apt-get -y autoremove timekpr-next
Remove timekpr-next Configurations and Data
To remove timekpr-next
configuration and data from Kali Linux we can use the following command:
sudo apt-get -y purge timekpr-next
Remove timekpr-next configuration, data, and all of its dependencies
We can use the following command to remove timekpr-next
configurations, data and all of its dependencies, we can use the following command:
sudo apt-get -y autoremove --purge timekpr-next
Dependencies
timekpr-next have the following dependencies:
- gir1.2-gtk-3.0
- libgtk-3-0
- lxpolkit
- policykit-1
- python3
- python3-dbus
- python3-gi
- python3-psutil
- systemd
- python3
References
Summary
In this tutorial we learn how to install timekpr-next
package on Kali Linux using different package management tools: apt
, apt-get
and aptitude
.