din command not found
Introduction
When you run more command in linux terminal / console, you get the following error message
din: command not found
or when using sudo you get the following error message
sudo: din: command not found
Solutions to din: command not found
How To Fix din: command not found in Ubuntu / Debian / Kali Linux / Raspbian
In Ubuntu din is provided by din package.
din is:
din is a musical instrument and audio synthesizer. It allows one to use Bezier curves to draw and sculpt waveforms, create gating and modulation patterns and create delay feedback and volume patterns. It’s possible to create and edit an unlimited number of drones, sculpt their waveform and visually modulate them.
din uses JACK to output audio, it supports MIDI, OSC and an IRC bot for input. din can be extended and customised with Tcl scripts too.
To fix this problem, we can install more using the command below.
sudo apt-get -y install din
This command might take some time to finish depending on your machine internet connection.
You can also use apt command to install din.
sudo apt -y install din
Or if you have aptitude installed you can use the following command.
sudo aptitude install din
Summary
In this tutorial we learn how to fix din command not found error in Ubuntu / Debian / Kali Linux or Raspbian distribution.