gexec command not found

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

Introduction

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

gexec: command not found

or when using sudo you get the following error message

sudo: gexec: command not found

Solutions to gexec: command not found

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

In Ubuntu gexec is provided by gexec package.

gexec is:

gexec is a small and simple command executer using GTK+. It features autocompletition and a command history. Furthermore gexec can run the chosen command as root or in a terminal emulator.

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

sudo apt-get -y install gexec

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

You can also use apt command to install gexec.

sudo apt -y install gexec

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

sudo aptitude install gexec

Summary

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