k3b command not found

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

Introduction

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

k3b: command not found

or when using sudo you get the following error message

sudo: k3b: command not found

Solutions to k3b: command not found

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

In Ubuntu k3b is provided by k3b package.

k3b is:

K3b is a full-featured CD/DVD/Blu-ray burning and ripping application. It supports a variety of project types as well as copying of optical media, burning of different types of images, and ripping Audio CDs, Video CDs, and Video DVDs. Its convenient user interface is targeted at all audiences, trying to be as simple as possible for novice users, while also providing all features an advanced user might need.

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

sudo apt-get -y install k3b

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

You can also use apt command to install k3b.

sudo apt -y install k3b

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

sudo aptitude install k3b

Summary

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