openmsx command not found
Introduction
When you run more command in linux terminal / console, you get the following error message
openmsx: command not found
or when using sudo you get the following error message
sudo: openmsx: command not found
Solutions to openmsx: command not found
How To Fix openmsx: command not found in Ubuntu / Debian / Kali Linux / Raspbian
In Ubuntu openmsx is provided by openmsx package.
openmsx is:
openMSX is an open source MSX emulator that uses a unique emulation model, which tries to achieve the highest level of accuracy possible. It allows emulating a large number of different MSX machines. Combined with the C-BIOS ROM-files that are available in a separate package, you can run game ROM-files without the need for non-free BIOS ROM files.
To fix this problem, we can install more using the command below.
sudo apt-get -y install openmsx
This command might take some time to finish depending on your machine internet connection.
You can also use apt command to install openmsx.
sudo apt -y install openmsx
Or if you have aptitude installed you can use the following command.
sudo aptitude install openmsx
Summary
In this tutorial we learn how to fix openmsx command not found error in Ubuntu / Debian / Kali Linux or Raspbian distribution.