kbackup command not found

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

Introduction

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

kbackup: command not found

or when using sudo you get the following error message

sudo: kbackup: command not found

Solutions to kbackup: command not found

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

In Ubuntu kbackup is provided by kbackup package.

kbackup is:

Kbackup is a program that lets you back up any directories or files. It uses an easy to use directory tree to select the things to back up and lets you save your settings in “profile” files. These are simple textfiles containing definitions for directories and files to be included or excluded from the backup process.

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

sudo apt-get -y install kbackup

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

You can also use apt command to install kbackup.

sudo apt -y install kbackup

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

sudo aptitude install kbackup

Summary

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