aconnectgui command not found
Introduction
When you run more command in linux terminal / console, you get the following error message
aconnectgui: command not found
or when using sudo you get the following error message
sudo: aconnectgui: command not found
Solutions to aconnectgui: command not found
How To Fix aconnectgui: command not found in Ubuntu / Debian / Kali Linux / Raspbian
In Ubuntu aconnectgui is provided by aconnectgui package.
aconnectgui is:
aconnectgui is a graphical utility to connect and disconnect two existing ports on ALSA sequencer system. The ports with the arbitrary subscription permission, such as created by aseqview, can be connected to any (MIDI) device ports.
aconnectgui is a frontend for aconnect, written directly on top of the aconnect source, leaving the original source intact, only adding a couple of ifdefs, and some calls to the gui part. It provides exactly the same functionality, but with a graphical user interface.
To fix this problem, we can install more using the command below.
sudo apt-get -y install aconnectgui
This command might take some time to finish depending on your machine internet connection.
You can also use apt command to install aconnectgui.
sudo apt -y install aconnectgui
Or if you have aptitude installed you can use the following command.
sudo aptitude install aconnectgui
Summary
In this tutorial we learn how to fix aconnectgui command not found error in Ubuntu / Debian / Kali Linux or Raspbian distribution.