pasmo command not found

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

Introduction

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

pasmo: command not found

or when using sudo you get the following error message

sudo: pasmo: command not found

Solutions to pasmo: command not found

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

In Ubuntu pasmo is provided by pasmo package.

pasmo is:

A Z80 assembler capable of generating object code in formats suitable for many Z80 machines and emulators. Pasmo generates fixed position code, can not be used to create relocatable object files for use with linkers. Pasmo is compatible with the syntax used in several old assemblers, by supporting several styles of numeric and string literals and by providing several names of the most used directives.

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

sudo apt-get -y install pasmo

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

You can also use apt command to install pasmo.

sudo apt -y install pasmo

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

sudo aptitude install pasmo

Summary

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