How To Install ukopp on Kali Linux
Introduction
In this tutorial we learn how to install ukopp
on Kali Linux.
What is ukopp
ukopp is:
Ukopp is used to copy or back-up disk files to a disk or disk-like device, such as a USB stick. It copies only new or modified files since the last backup, and is therefore quite fast. A GUI is used to navigate the file system to include or exclude files or directories at any level. These choices can be saved in a job file for repeated use. New files appearing within the included directories are handled automatically. Optionally, previous versions of the backup files can be retained instead of being overwritten. Files can be selectively restored using a GUI. Ownership and permissions are also restored, even if the target device uses a Microsoft file system.
There are three methods to install ukopp
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 ukopp Using apt-get
Update apt database with apt-get
using the following command.
sudo apt-get update
After updating apt database, We can install ukopp
using apt-get
by running the following command:
sudo apt-get -y install ukopp
Install ukopp Using apt
Update apt database with apt
using the following command.
sudo apt update
After updating apt database, We can install ukopp
using apt
by running the following command:
sudo apt -y install ukopp
Install ukopp 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 ukopp
using aptitude
by running the following command:
sudo aptitude -y install ukopp
How To Uninstall ukopp on Kali Linux
To uninstall only the ukopp
package we can use the following command:
sudo apt-get remove ukopp
Uninstall ukopp And Its Dependencies
To uninstall ukopp
and its dependencies that are no longer needed by Kali Linux, we can use the command below:
sudo apt-get -y autoremove ukopp
Remove ukopp Configurations and Data
To remove ukopp
configuration and data from Kali Linux we can use the following command:
sudo apt-get -y purge ukopp
Remove ukopp configuration, data, and all of its dependencies
We can use the following command to remove ukopp
configurations, data and all of its dependencies, we can use the following command:
sudo apt-get -y autoremove --purge ukopp
Dependencies
ukopp have the following dependencies:
References
Summary
In this tutorial we learn how to install ukopp
package on Kali Linux using different package management tools: apt
, apt-get
and aptitude
.