How To Install bio2jack on Fedora 34

bio2jack is A library for porting blocked io(OSS/ALSA) applications to jack A library for porting blocked io(OSS/ALSA) applications to jack

Introduction

In this tutorial we learn how to install bio2jack on Fedora 34.

What is bio2jack

Bio (blocked i/o) 2 jack is a library for enabling easy porting of blocked io(OSS/ALSA) applications to the jack sound server. This library allows the person porting the code to simply replace the calls into OSS/ALSA with calls into interface functions of this library. The library buffers a small amount of audio data and takes care of the rest of the jack implementation including the linked list of audio data buffers and the jack callback. bio2jack 0.9 26.fc34 x86_64 31 k bio2jack-0.9-26.fc34.src.rpm fedora A library for porting blocked io(OSS/ALSA) applications to jack http LGPLv2+ Bio (blocked i/o) 2 jack is a library for enabling easy porting of blocked io(OSS/ALSA) applications to the jack sound server. This library allows the person porting the code to simply replace the calls into OSS/ALSA with calls into interface functions of this library. The library buffers a small amount of audio data and takes care of the rest of the jack implementation including the linked list of audio data buffers and the jack callback.

We can use yum or dnf to install bio2jack on Fedora 34. In this tutorial we discuss both methods but you only need to choose one of method to install bio2jack.

Install bio2jack 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 bio2jack using dnf by running the following command:

sudo dnf -y install bio2jack

Install bio2jack 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 bio2jack using yum by running the following command:

sudo yum -y install bio2jack

How To Uninstall bio2jack on Fedora 34

To uninstall only the bio2jack package we can use the following command:

sudo dnf remove bio2jack

bio2jack Package Contents on Fedora 34

/usr/lib/.build-id
/usr/lib/.build-id/31
/usr/lib/.build-id/31/4b7963888e9e290f24232661e6b658a88a36a0
/usr/lib/libbio2jack.so.0
/usr/lib/libbio2jack.so.0.9.0
/usr/share/doc/bio2jack
/usr/share/doc/bio2jack/AUTHORS
/usr/share/doc/bio2jack/ChangeLog
/usr/share/doc/bio2jack/NEWS
/usr/share/doc/bio2jack/README
/usr/lib/.build-id
/usr/lib/.build-id/b7
/usr/lib/.build-id/b7/54d379e13f68f1db339c3d7a1b4ab85299bac6
/usr/lib64/libbio2jack.so.0
/usr/lib64/libbio2jack.so.0.9.0
/usr/share/doc/bio2jack
/usr/share/doc/bio2jack/AUTHORS
/usr/share/doc/bio2jack/ChangeLog
/usr/share/doc/bio2jack/NEWS
/usr/share/doc/bio2jack/README

References

Summary

In this tutorial we learn how to install bio2jack on Fedora 34 using yum and dnf.