dkopp command not found

In this troubleshooting guide we learn how to fix dkopp command not found error message

Introduction

When you run more command in linux terminal / console, you get the following error message

dkopp: command not found

or when using sudo you get the following error message

sudo: dkopp: command not found

Solutions to dkopp: command not found

How To Fix dkopp: command not found in Ubuntu / Debian / Kali Linux / Raspbian

In Ubuntu dkopp is provided by dkopp package.

dkopp is:

Dkopp is a program used to copy or back-up disk files to DVD or BD (Blue-ray) media. Full or incremental backups can be done, with full or incremental media verification. A GUI is used to navigate through directories to select or de-select files or directories at any level. Backup jobs can be saved for later re-use. New, deleted, and updated disk files are handled automatically, without re-editing the backup job. An incremental backup updates the same DVD/BD media used for a prior full backup. Files can be restored to the same or another location on disk. Large backup jobs can be done using multiple DVD media.

To fix this problem, we can install more using the command below.

sudo apt-get -y install dkopp

This command might take some time to finish depending on your machine internet connection.

You can also use apt command to install dkopp.

sudo apt -y install dkopp

Or if you have aptitude installed you can use the following command.

sudo aptitude install dkopp

Summary

In this tutorial we learn how to fix dkopp command not found error in Ubuntu / Debian / Kali Linux or Raspbian distribution.