Updated 03-Aug-2025
Update May 2025
Most of the below is crap. I hate Jack. Pipewire isn't any better. But I did find a bit of a fix for my PulseAudio settings (a bit more control) from this page:
sudo apt purge pulseaudio-equalizer # removes the old EQ
# the order in which the services are stopped is important
systemctl --user stop pulseaudio.service
systemctl --user stop pulseaudio.socket
rm -rf .config/pulse # removes all pulse configurations
pulseaudio --start # creates new default config & launches service + socket
# Then I installed pulseeffects and the lsp-plugins.
sudo apt install pulseeffects # the software itself
sudo apt install lsp-plugins # contains the equalizer plugin
After that, just run pulseeffects
and add the plugins needed (some clicking required).
What I need next (may 2025)
Note that this doesn't fix all things and what I really need is a comprehensive way of being about to run multiple audio streams (as desired), use a MIDI keyboard, mix and record audio (LMMS does not record audio).
- Reaper for DAW (Reaper tech specs)
- Hardware for interfaces (possibly)
- Jack (if absolutely necessary)
- Maybe a third party wiring tool (maybe)
- Instructions for connecting MIDI keyboard into DAW with sound
- If I ever have super extra funds, then... the Linnstrument
Audio on Linux
- The below may be in need of revision
Audio can be a pain on Linux. One thing is the rather low quality of PulseAudio, which is common. The next is the layered configuration of ALSA as a driver and JACK as a connector. However, JACK can override PAVU, so things don't stay in their neat little boxes.
That said, I've come to some sort of peace with PulseAudio on intel NUCs, largely by ignoring the built-in and HDMI audio and relying on a USB audio connector, a Unitek Y-247-A. Cheaper and better. Things are also complicated as I've got a Logitech C920 webcam which itself has a microphone.
Ok, that said, my real challenge came when trying to hook up a Nektar SE61 keyboard. It turns out that one approach (the easiest to figure out) was to find all the software elements needed to use keyboard input into a midi synth, as well as produce multitrack recordings. That way everything needed can be hooked up and work together. Here are the parts, all of which are cross-platform and open source
- QJackCTL / Jack - qjackctl
- Zyn-Fusion / ZynAddSubFX - zynaddsubfx -I alsa -O jack
- Ardour - ardour
The qjackctl initiates JACK and allows for routing audio channels. The zynaddsubfx is the synthesis engine. And ardour is the digital audio workstation (DAW).
Another lovely piece of open source software is MuseScore, for creating, playing, and printing sheet music.
QjackCtl Settings
- Settings
- Driver: alsa
- Realtime: checked
- Interface: hw:Device (or whatever the soundcard is, perform
cat /proc/asound/cards
) - Sample Rate: 48000
- Frames/Period: 64
- Periods/Buffer: 3
- Midi driver: none
- Misc
- Enable ALSA Sequencer support