How To Install dssi on Fedora 34
Introduction
In this tutorial we learn how to install dssi
on Fedora 34.
What is dssi
Disposable Soft Synth Interface (DSSI, pronounced “dizzy”) is a proposal for a plugin API for software instruments (soft synths) with user interfaces, permitting them to be hosted in-process by Linux audio applications. Think of it as LADSPA-for-instruments, or something comparable to a simpler version of VSTi.
We can use yum
or dnf
to install dssi
on Fedora 34. In this tutorial we discuss both methods but you only need to choose one of method to install dssi.
Install dssi 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 dssi
using dnf
by running the following command:
sudo dnf -y install dssi
Install dssi 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 dssi
using yum
by running the following command:
sudo yum -y install dssi
How To Uninstall dssi on Fedora 34
To uninstall only the dssi
package we can use the following command:
sudo dnf remove dssi
dssi Package Contents on Fedora 34
/usr/bin/dssi_analyse_plugin
/usr/bin/dssi_list_plugins
/usr/bin/dssi_osc_send
/usr/bin/dssi_osc_update
/usr/bin/jack-dssi-host
/usr/lib/.build-id
/usr/lib/.build-id/39
/usr/lib/.build-id/39/6cc139a704eaf53e15bbb91a0c33d024984b96
/usr/lib/.build-id/49
/usr/lib/.build-id/49/deefb1a1a035575c972880c994603b787014ec
/usr/lib/.build-id/8c
/usr/lib/.build-id/8c/5ba64273134f52e5c8a376c5051dccf80ff875
/usr/lib/.build-id/ae
/usr/lib/.build-id/ae/67a13d6eb3a249669d9c6cdaba848de3c4e4ff
/usr/lib/.build-id/ca
/usr/lib/.build-id/ca/281fd1a22388f01d4a43005a4b1c389b471565
/usr/lib64/dssi
/usr/share/doc/dssi
/usr/share/doc/dssi/ChangeLog
/usr/share/doc/dssi/README
/usr/share/doc/dssi/README.1.1.1
/usr/share/doc/dssi/TODO
/usr/share/man/man1/dssi_analyse_plugin.1.gz
/usr/share/man/man1/dssi_list_plugins.1.gz
/usr/share/man/man1/dssi_osc_send.1.gz
/usr/share/man/man1/dssi_osc_update.1.gz
/usr/share/man/man1/jack-dssi-host.1.gz
References
Summary
In this tutorial we learn how to install dssi
on Fedora 34 using yum and dnf.