debugapp command not found
Introduction
When you run more command in linux terminal / console, you get the following error message
debugapp: command not found
or when using sudo you get the following error message
sudo: debugapp: command not found
Solutions to debugapp: command not found
How To Fix debugapp: command not found in Ubuntu / Debian / Kali Linux / Raspbian
In Ubuntu debugapp is provided by gnustep-common package.
gnustep-common is:
This package contains the main GNUstep configuration file, common files, scripts and directory layout needed to run any GNUstep software.
To fix this problem, we can install more using the command below.
sudo apt-get -y install gnustep-common
This command might take some time to finish depending on your machine internet connection.
You can also use apt command to install gnustep-common.
sudo apt -y install gnustep-common
Or if you have aptitude installed you can use the following command.
sudo aptitude install gnustep-common
Summary
In this tutorial we learn how to fix debugapp command not found error in Ubuntu / Debian / Kali Linux or Raspbian distribution.