gst-reload command not found

In this troubleshooting guide we learn how to fix gst-reload command not found error message

Introduction

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

gst-reload: command not found

or when using sudo you get the following error message

sudo: gst-reload: command not found

Solutions to gst-reload: command not found

How To Fix gst-reload: command not found in Ubuntu / Debian / Kali Linux / Raspbian

In Ubuntu gst-reload is provided by gnu-smalltalk package.

gnu-smalltalk is:

GNU Smalltalk is an implementation that closely follows the Smalltalk-80 language as described in the book `Smalltalk-80: the Language and its Implementation’ by Adele Goldberg and David Robson.

This package contains the GNU Smalltalk interpreter and the base image.

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

sudo apt-get -y install gnu-smalltalk

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

You can also use apt command to install gnu-smalltalk.

sudo apt -y install gnu-smalltalk

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

sudo aptitude install gnu-smalltalk

Summary

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