What is a True Stereo Reverb

A true stereo reverb is an reverb which also contains 4 audio channels and include left to right and right to left audio tracks, resulting in the usage of 4 internal audio streams.
Often used within a plugin or technique like Impulse Response (IR.

The 4 specified channels are:

  1. LL
  2. LR
  3. RL
  4. RR

SpaceServer WAMP kit becomes SpaceServer powered by Docker

I`ve decided to change the road for SpaceServer WAMP kit by making it fully modular and powered by Docker.

Packages include:

  • Apache 2.4
  • MySQL Server 8.0
  • PHP 8.1
  • phpMyAdmin

Ubuntu Linux kernel 5.18 installation guide

This installation guide describes how to install Linux Kernel 5.18.0 on Ubuntu Linux. This works with the latest version of Ubuntu Linux and most Ubuntu-based distributions including Kubuntu and Mint. The included kernel files have been compiled using the generic Ubuntu configuration. A low latency version is also available in the directory of the linked files.

This post is an update of “Ubuntu Linux kernel 5.17 installation guide

Which version do you need? The same as the current installed OS
In the terminal run: uname -a

Quick selection guide:

  • AMD64 Most current computers
  • ARM 64: ARMv8 CPUs
  • ARM HF: ARMv7 CPUs
  • IBM PowerPC 64: PPC64EL
  • IBM Z: S390X

The files can be found at: https://kernel.ubuntu.com/~kernel-ppa/mainline/v5.18/

  1. Install the general headers:

    linux-headers-5.18.0-051800-generic_5.18.0-051800.202205222030_amd64.deb
  2. And the appropriate headers package for your system
  3. and the kernel image
  4. And the kernel modules

Install the files in the same order as downloaded above

In the terminal run: sudo update-grub

Reboot and select the kernel from the bootloader menu

How-To Install Python 2.7 on a Raspberry Pi running Raspbian

sudo apt-get install software-properties-common
sudo add-apt-repository ppa:deadsnakes/ppa
sudo apt-get update
sudo apt-get install python2.7

How-To Install Python 3.10 on a Raspberry Pi running Raspbian

sudo apt-get install software-properties-common
sudo add-apt-repository ppa:deadsnakes/ppa
sudo apt-get update
sudo apt-get install python3.10