konsole command not found
Introduction
When you run more command in linux terminal / console, you get the following error message
konsole: command not found
or when using sudo you get the following error message
sudo: konsole: command not found
Solutions to konsole: command not found
How To Fix konsole: command not found in Ubuntu / Debian / Kali Linux / Raspbian
In Ubuntu konsole is provided by konsole package.
konsole is:
Konsole is a terminal emulator built on the KDE Platform. It can contain multiple terminal sessions inside one window using detachable tabs.
Konsole supports powerful terminal features, such as customizable schemes, saved sessions, and output monitoring.
To fix this problem, we can install more using the command below.
sudo apt-get -y install konsole
This command might take some time to finish depending on your machine internet connection.
You can also use apt command to install konsole.
sudo apt -y install konsole
Or if you have aptitude installed you can use the following command.
sudo aptitude install konsole
Summary
In this tutorial we learn how to fix konsole command not found error in Ubuntu / Debian / Kali Linux or Raspbian distribution.