How To Install vamp-plugin-sdk on Rocky Linux 8
Introduction
In this tutorial we learn how to install vamp-plugin-sdk
on Rocky Linux 8.
What is vamp-plugin-sdk
Vamp is an API for C and C++ plugins that process sampled audio data to produce descriptive output (measurements or semantic observations).
We can use yum
or dnf
to install vamp-plugin-sdk
on Rocky Linux 8. In this tutorial we discuss both methods but you only need to choose one of method to install vamp-plugin-sdk.
Install vamp-plugin-sdk on Rocky Linux 8 Using dnf
Update yum database with dnf
using the following command.
sudo dnf makecache --refresh
After updating yum database, We can install vamp-plugin-sdk
using dnf
by running the following command:
sudo dnf -y install vamp-plugin-sdk
Install vamp-plugin-sdk on Rocky Linux 8 Using yum
Update yum database with yum
using the following command.
sudo yum makecache --refresh
After updating yum database, We can install vamp-plugin-sdk
using yum
by running the following command:
sudo yum -y install vamp-plugin-sdk
How To Uninstall vamp-plugin-sdk on Rocky Linux 8
To uninstall only the vamp-plugin-sdk
package we can use the following command:
sudo dnf remove vamp-plugin-sdk
vamp-plugin-sdk Package Contents on Rocky Linux 8
/usr/lib/.build-id
/usr/lib/.build-id/13
/usr/lib/.build-id/13/585cda137c683138be6fd94351804cf1e4e153
/usr/lib/.build-id/70
/usr/lib/.build-id/70/6f79b8ff30275ea89449b2683fd1509e3be787
/usr/lib/.build-id/ae
/usr/lib/.build-id/ae/868978bcd13ff4e1dc26d479b7368d0ff86b0d
/usr/lib64/libvamp-hostsdk.so.3
/usr/lib64/libvamp-hostsdk.so.3.8.0
/usr/lib64/libvamp-sdk.so.2
/usr/lib64/libvamp-sdk.so.2.8.0
/usr/lib64/vamp
/usr/lib64/vamp/vamp-example-plugins.cat
/usr/lib64/vamp/vamp-example-plugins.n3
/usr/lib64/vamp/vamp-example-plugins.so
/usr/share/doc/vamp-plugin-sdk
/usr/share/doc/vamp-plugin-sdk/README
/usr/share/licenses/vamp-plugin-sdk
/usr/share/licenses/vamp-plugin-sdk/COPYING
References
Summary
In this tutorial we learn how to install vamp-plugin-sdk
on Rocky Linux 8 using yum and dnf.