gmixvm command not found

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

Introduction

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

gmixvm: command not found

or when using sudo you get the following error message

sudo: gmixvm: command not found

Solutions to gmixvm: command not found

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

In Ubuntu gmixvm is provided by mdk package.

mdk is:

MDK stands for MIX Development Kit, and provides tools for developing and executing, in a MIX virtual machine, MIXAL programs.

The MIX is Donald Knuth’s mythical computer, described in the first volume of The Art of Computer Programming, which is programmed using MIXAL, the MIX assembly language.

MDK includes a MIXAL assembler (mixasm) and a MIX virtual machine (mixvm) with a command line interface. In addition, a GTK+ GUI to mixvm, called gmixvm, and a Guile interpreter with an embedded MIX virtual machine called mixguile, are provided.

Using these interfaces, you can debug your MIXAL programs at source code level, and read/modify the contents of all the components of the MIX computer (including block devices, which are simulated using the file system).

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

sudo apt-get -y install mdk

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

You can also use apt command to install mdk.

sudo apt -y install mdk

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

sudo aptitude install mdk

Summary

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