aylet command not found
Introduction
When you run more command in linux terminal / console, you get the following error message
aylet: command not found
or when using sudo you get the following error message
sudo: aylet: command not found
Solutions to aylet: command not found
How To Fix aylet: command not found in Ubuntu / Debian / Kali Linux / Raspbian
In Ubuntu aylet is provided by aylet package.
aylet is:
aylet plays music files in the `.ay’ format. These files are essentially wrappers around bits of Z80 code which play music on the Sinclair ZX Spectrum 128’s sound hardware - either the beeper, or (eponymously) the AY-3-8912 sound chip. Files using the Amstrad CPC ports are also supported.
One source of `.ay’ files playable with aylet is “Project AY” on the World of Spectrum website:
To fix this problem, we can install more using the command below.
sudo apt-get -y install aylet
This command might take some time to finish depending on your machine internet connection.
You can also use apt command to install aylet.
sudo apt -y install aylet
Or if you have aptitude installed you can use the following command.
sudo aptitude install aylet
Summary
In this tutorial we learn how to fix aylet command not found error in Ubuntu / Debian / Kali Linux or Raspbian distribution.