How To Install ladspa on CentOS 8
Introduction
In this tutorial we learn how to install ladspa
on CentOS 8.
What is ladspa
There is a large number of synthesis packages in use or development on the Linux platform at this time. The Linux Audio Developer’s Simple Plugin API (LADSPA) attempts to give programmers the ability to write simple `plugin’ audio processors in C/C++ and link them dynamically against a range of host applications. This package contains the example plug-ins and tools from the LADSPA SDK.
We can use yum
or dnf
to install ladspa
on CentOS 8. In this tutorial we discuss both methods but you only need to choose one of method to install ladspa.
Install ladspa on CentOS 8 Using dnf
Update yum database with dnf
using the following command.
sudo dnf makecache --refresh
The output should look something like this:
CentOS Linux 8 - AppStream 43 kB/s | 4.3 kB 00:00
CentOS Linux 8 - BaseOS 65 kB/s | 3.9 kB 00:00
CentOS Linux 8 - ContinuousRelease 43 kB/s | 3.0 kB 00:00
CentOS Linux 8 - Extras 23 kB/s | 1.5 kB 00:00
CentOS Linux 8 - FastTrack 40 kB/s | 3.0 kB 00:00
CentOS Linux 8 - HighAvailability 36 kB/s | 3.9 kB 00:00
CentOS Linux 8 - Plus 24 kB/s | 1.5 kB 00:00
CentOS Linux 8 - PowerTools 50 kB/s | 4.3 kB 00:00
Extra Packages for Enterprise Linux Modular 8 - x86_64 13 kB/s | 9.2 kB 00:00
Extra Packages for Enterprise Linux 8 - x86_64 24 kB/s | 8.5 kB 00:00
Metadata cache created.
After updating yum database, We can install ladspa
using dnf
by running the following command:
sudo dnf -y install ladspa
Install ladspa on CentOS 8 Using yum
Update yum database with yum
using the following command.
sudo yum makecache --refresh
The output should look something like this:
CentOS Linux 8 - AppStream 43 kB/s | 4.3 kB 00:00
CentOS Linux 8 - BaseOS 65 kB/s | 3.9 kB 00:00
CentOS Linux 8 - ContinuousRelease 43 kB/s | 3.0 kB 00:00
CentOS Linux 8 - Extras 23 kB/s | 1.5 kB 00:00
CentOS Linux 8 - FastTrack 40 kB/s | 3.0 kB 00:00
CentOS Linux 8 - HighAvailability 36 kB/s | 3.9 kB 00:00
CentOS Linux 8 - Plus 24 kB/s | 1.5 kB 00:00
CentOS Linux 8 - PowerTools 50 kB/s | 4.3 kB 00:00
Extra Packages for Enterprise Linux Modular 8 - x86_64 13 kB/s | 9.2 kB 00:00
Extra Packages for Enterprise Linux 8 - x86_64 24 kB/s | 8.5 kB 00:00
Metadata cache created.
After updating yum database, We can install ladspa
using yum
by running the following command:
sudo yum -y install ladspa
How To Uninstall ladspa on CentOS 8
To uninstall only the ladspa
package we can use the following command:
sudo dnf remove ladspa
ladspa Package Contents on CentOS 8
/usr/bin/analyseplugin
/usr/bin/applyplugin
/usr/bin/listplugins
/usr/lib/.build-id
/usr/lib/.build-id/04
/usr/lib/.build-id/04/e1c011307407e41e4b239bd8474d59448673d7
/usr/lib/.build-id/51
/usr/lib/.build-id/51/c924360754047be67782dc63e50df2d31dfc76
/usr/lib/.build-id/7b
/usr/lib/.build-id/7b/a297e3ba0e94e1466cb4309b1dacb3d476bb98
/usr/lib/.build-id/7e
/usr/lib/.build-id/7e/3618662f72944e7ad6a24a3cacdfae81df9930
/usr/lib/.build-id/8a
/usr/lib/.build-id/8a/5e353b45985fbe01b49938b578a8548d43f25f
/usr/lib/.build-id/bc
/usr/lib/.build-id/bc/30f34aa9d5db1fa7c88a00d68c556fdfa6716e
/usr/lib/.build-id/ca
/usr/lib/.build-id/ca/0774d671626a78ff7f87c12f76b0c2f83ae892
/usr/lib/.build-id/e3
/usr/lib/.build-id/e3/8a9ccc8ce1ffbd54595f8d63ba4d07ecb6d100
/usr/lib64/ladspa
/usr/lib64/ladspa/amp.so
/usr/lib64/ladspa/delay.so
/usr/lib64/ladspa/filter.so
/usr/lib64/ladspa/noise.so
/usr/lib64/ladspa/sine.so
/usr/share/doc/ladspa
/usr/share/doc/ladspa/COPYING
/usr/share/ladspa
/usr/share/ladspa/rdf
References
Summary
In this tutorial we learn how to install ladspa
on CentOS 8 using yum and dnf.