ukopp command not found
Introduction
When you run more command in linux terminal / console, you get the following error message
ukopp: command not found
or when using sudo you get the following error message
sudo: ukopp: command not found
Solutions to ukopp: command not found
How To Fix ukopp: command not found in Ubuntu / Debian / Kali Linux / Raspbian
In Ubuntu ukopp is provided by ukopp package.
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.
To fix this problem, we can install more using the command below.
sudo apt-get -y install ukopp
This command might take some time to finish depending on your machine internet connection.
You can also use apt command to install ukopp.
sudo apt -y install ukopp
Or if you have aptitude installed you can use the following command.
sudo aptitude install ukopp
Summary
In this tutorial we learn how to fix ukopp command not found error in Ubuntu / Debian / Kali Linux or Raspbian distribution.