How To Install slv2 on Fedora 34
Introduction
In this tutorial we learn how to install slv2
on Fedora 34.
What is slv2
SLV2 is a library to make the use of LV2 plugins as simple as possible for applications. It is written in standard C using the Redland RDF toolkit. The Data (RDF) and code (shared library) functionality in SLV2 is strictly separated so it is simple to control where each is used (e.g. it is possible to discover/investigate plugins and related data without loading any shared libraries, avoiding the associated risks). slv2 0.6.6 32.fc34 x86_64 57 k slv2-0.6.6-32.fc34.src.rpm fedora LV2 host library http GPLv2+ SLV2 is a library to make the use of LV2 plugins as simple as possible for applications. It is written in standard C using the Redland RDF toolkit. The Data (RDF) and code (shared library) functionality in SLV2 is strictly separated so it is simple to control where each is used (e.g. it is possible to discover/investigate plugins and related data without loading any shared libraries, avoiding the associated risks).
We can use yum
or dnf
to install slv2
on Fedora 34. In this tutorial we discuss both methods but you only need to choose one of method to install slv2.
Install slv2 on Fedora 34 Using dnf
Update yum database with dnf
using the following command.
sudo dnf makecache --refresh
The output should look something like this:
Fedora 34 - x86_64 20 kB/s | 6.6 kB 00:00
Fedora 34 openh264 (From Cisco) - x86_64 1.4 kB/s | 989 B 00:00
Fedora Modular 34 - x86_64 68 kB/s | 6.5 kB 00:00
Fedora 34 - x86_64 - Updates 3.5 kB/s | 6.2 kB 00:01
Fedora Modular 34 - x86_64 - Updates 17 kB/s | 5.9 kB 00:00
Metadata cache created.
After updating yum database, We can install slv2
using dnf
by running the following command:
sudo dnf -y install slv2
Install slv2 on Fedora 34 Using yum
Update yum database with yum
using the following command.
sudo yum makecache --refresh
The output should look something like this:
Fedora 34 - x86_64 20 kB/s | 6.6 kB 00:00
Fedora 34 openh264 (From Cisco) - x86_64 1.4 kB/s | 989 B 00:00
Fedora Modular 34 - x86_64 68 kB/s | 6.5 kB 00:00
Fedora 34 - x86_64 - Updates 3.5 kB/s | 6.2 kB 00:01
Fedora Modular 34 - x86_64 - Updates 17 kB/s | 5.9 kB 00:00
Metadata cache created.
After updating yum database, We can install slv2
using yum
by running the following command:
sudo yum -y install slv2
How To Uninstall slv2 on Fedora 34
To uninstall only the slv2
package we can use the following command:
sudo dnf remove slv2
slv2 Package Contents on Fedora 34
/usr/bin/lv2_inspect
/usr/bin/lv2_jack_host
/usr/bin/lv2_list
/usr/bin/lv2_simple_jack_host
/usr/lib/.build-id
/usr/lib/.build-id/04
/usr/lib/.build-id/04/809682e7e065cd9dc87f79bf08eb0591dad0d9
/usr/lib/.build-id/39
/usr/lib/.build-id/39/1ebaa631ed6f033319f604a95f188687f3fcb7
/usr/lib/.build-id/3e
/usr/lib/.build-id/3e/e1328d86f06a91a3e3040fa6b739b2dc3454f4
/usr/lib/.build-id/4d
/usr/lib/.build-id/4d/26c0fcd06fdb34415d5788970e2cc8265430a4
/usr/lib/.build-id/99
/usr/lib/.build-id/99/55509f2f94ed8bffe89484267f72081b243133
/usr/lib/libslv2.so.9
/usr/lib/libslv2.so.9.2.0
/usr/share/doc/slv2
/usr/share/doc/slv2/AUTHORS
/usr/share/doc/slv2/COPYING
/usr/share/doc/slv2/ChangeLog
/usr/share/doc/slv2/README
/usr/share/man/man1/lv2_inspect.1.gz
/usr/share/man/man1/lv2_jack_host.1.gz
/usr/share/man/man1/lv2_list.1.gz
/usr/share/man/man1/lv2_simple_jack_host.1.gz
/usr/bin/lv2_inspect
/usr/bin/lv2_jack_host
/usr/bin/lv2_list
/usr/bin/lv2_simple_jack_host
/usr/lib/.build-id
/usr/lib/.build-id/44
/usr/lib/.build-id/44/9d08b88b3b521b251ba7d6d56dea00120c12cf
/usr/lib/.build-id/82
/usr/lib/.build-id/82/a075fb8f562fdc6caaec9eb4222eb2f5f9a890
/usr/lib/.build-id/b5
/usr/lib/.build-id/b5/862725898adca51be2bae812b13e1238c13adc
/usr/lib/.build-id/c6
/usr/lib/.build-id/c6/5b8dce8cee484c2e559374fe7b81b6ea3323ad
/usr/lib/.build-id/fd
/usr/lib/.build-id/fd/6e30d9f96a399aa2d1571109674ba00a3e6995
/usr/lib64/libslv2.so.9
/usr/lib64/libslv2.so.9.2.0
/usr/share/doc/slv2
/usr/share/doc/slv2/AUTHORS
/usr/share/doc/slv2/COPYING
/usr/share/doc/slv2/ChangeLog
/usr/share/doc/slv2/README
/usr/share/man/man1/lv2_inspect.1.gz
/usr/share/man/man1/lv2_jack_host.1.gz
/usr/share/man/man1/lv2_list.1.gz
/usr/share/man/man1/lv2_simple_jack_host.1.gz
References
- [slv2 website](http://drobilla.net/software/slv2/ http://drobilla.net/software/slv2/)
Summary
In this tutorial we learn how to install slv2
on Fedora 34 using yum and dnf.