gearadmin command not found

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

Introduction

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

gearadmin: command not found

or when using sudo you get the following error message

sudo: gearadmin: command not found

Solutions to gearadmin: command not found

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

In Ubuntu gearadmin is provided by gearman-tools package.

gearman-tools is:

Gearman is a system to farm out work to other machines, dispatching function calls to machines that are better suited to do work, to do work in parallel, to load balance lots of function calls, or to call functions between languages.

This package contains some command line tools for manipulating gearman jobs.

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

sudo apt-get -y install gearman-tools

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

You can also use apt command to install gearman-tools.

sudo apt -y install gearman-tools

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

sudo aptitude install gearman-tools

Summary

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