gobby command not found

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

Introduction

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

gobby: command not found

or when using sudo you get the following error message

sudo: gobby: command not found

Solutions to gobby: command not found

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

In Ubuntu gobby is provided by gobby package.

gobby is:

Gobby is an editor which allows one to edit text documents and source files collaboratively over a network. All users could work on the file simultaneously without the need to lock it. The parts the various users write are highlighted in different colours and it supports syntax highlighting of various programming and markup languages.

Gobby is portable to both Windows and Unix-like platforms and makes use of the Gtk+ toolkit. A dedicated server is available in the infinoted package.

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

sudo apt-get -y install gobby

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

You can also use apt command to install gobby.

sudo apt -y install gobby

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

sudo aptitude install gobby

Summary

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