How To Install qmidiarp on Ubuntu 22.04

In this tutorial we learn how to install qmidiarp on Ubuntu 22.04. qmidiarp is MIDI arpeggiator for ALSA

Introduction

In this tutorial we learn how to install qmidiarp on Ubuntu 22.04.

What is qmidiarp

qmidiarp is:

QMidiArp is an advanced MIDI arpeggiator, programmable step sequencer and LFO for the ALSA sequencer. It can hold any number of arpeggiator, sequencer, or LFO modules running in parallel.

Arpeggiator modules produce sequences depending on the notes sent to their input port, which is typically connected to a keyboard or another sequencer.

Step sequencer modules allow one to create simple linear, monophonic and globally transposable sequences similar to the first analog sequencers.

MIDI LFO modules independently produce MIDI controller data of adjustable waveform, time resolution, amplitude and duration.

For each module, an input note filter is available, and the output port and channel can be set independently. Since the modules use a common sequencer queue, they are automatically in sync with each other. QMidiArp works with an internal tick resolution of 192 ticks per beat. The queue can be synchronized to an incoming MIDI realtime clock or as a JACK transport client. Most of the relevant control elements are accessible via MIDI controller through a MIDI-learn infrastructure. QMidiArp also has a log tool displaying the history of incoming MIDI events in colors depending on their type. QMidiArp is based on the Qt toolkit.

There are three methods to install qmidiarp on Ubuntu 22.04. We can use apt-get, apt and aptitude. In the following sections we will describe each method. You can choose one of them.

Install qmidiarp Using apt-get

Update apt database with apt-get using the following command.

sudo apt-get update

After updating apt database, We can install qmidiarp using apt-get by running the following command:

sudo apt-get -y install qmidiarp

Install qmidiarp Using apt

Update apt database with apt using the following command.

sudo apt update

After updating apt database, We can install qmidiarp using apt by running the following command:

sudo apt -y install qmidiarp

Install qmidiarp Using aptitude

If you want to follow this method, you might need to install aptitude first since aptitude is usually not installed by default on Ubuntu. Update apt database with aptitude using the following command.

sudo aptitude update

After updating apt database, We can install qmidiarp using aptitude by running the following command:

sudo aptitude -y install qmidiarp

How To Uninstall qmidiarp on Ubuntu 22.04

To uninstall only the qmidiarp package we can use the following command:

sudo apt-get remove qmidiarp

Uninstall qmidiarp And Its Dependencies

To uninstall qmidiarp and its dependencies that are no longer needed by Ubuntu 22.04, we can use the command below:

sudo apt-get -y autoremove qmidiarp

Remove qmidiarp Configurations and Data

To remove qmidiarp configuration and data from Ubuntu 22.04 we can use the following command:

sudo apt-get -y purge qmidiarp

Remove qmidiarp configuration, data, and all of its dependencies

We can use the following command to remove qmidiarp configurations, data and all of its dependencies, we can use the following command:

sudo apt-get -y autoremove --purge qmidiarp

References

Summary

In this tutorial we learn how to install qmidiarp package on Ubuntu 22.04 using different package management tools: apt, apt-get and aptitude.