How To Install ladspa on CentOS 7
Introduction
In this tutorial we learn how to install ladspa
on CentOS 7.
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 7. In this tutorial we discuss both methods but you only need to choose one of method to install ladspa.
Install ladspa on CentOS 7 Using yum
Update yum database with yum
using the following command.
sudo yum makecache
After updating yum database, We can install ladspa
using yum
by running the following command:
sudo yum -y install ladspa
Install ladspa on CentOS 7 Using dnf
If you don’t have dnf installed you can install DNF on CentOS 7 first.
Update yum database with dnf
using the following command.
sudo dnf makecache
After updating yum database, We can install ladspa
using dnf
by running the following command:
sudo dnf -y install ladspa
How To Uninstall ladspa on CentOS 7
To uninstall only the ladspa
package we can use the following command:
sudo dnf remove ladspa
References
Summary
In this tutorial we learn how to install ladspa
on CentOS 7 using yum
and dnf
.