How To Install rtfilter on Fedora 34
Introduction
In this tutorial we learn how to install rtfilter
on Fedora 34.
What is rtfilter
rtfilter provides a library written in C implementing realtime digital filtering functions for multichannel signals (i.e. filtering multiple signals with the same filter). It implements FIR, IIR filters and downsampler for float and double data type (both for real and complex valued signal). Additional functions are also provided to design few usual filters One of the main differences from other libraries providing digital signal processing is that the filter functions have been specifically designed and optimized for multichannel signals (from few channels to several hundred). If data allows it, the library automatically switch to optimized SIMD (Single Instruction Multiple Data) code, allowing to reduce by 3~4 the time spent in processing the data. rtfilter 1.1 13.fc34 x86_64 31 k rtfilter-1.1-13.fc34.src.rpm fedora Realtime digital filtering functions for multichannel signals http GPLv3 and LGPLv3 rtfilter provides a library written in C implementing realtime digital filtering functions for multichannel signals (i.e. filtering multiple signals with the same filter). It implements FIR, IIR filters and downsampler for float and double data type (both for real and complex valued signal). Additional functions are also provided to design few usual filters One of the main differences from other libraries providing digital signal processing is that the filter functions have been specifically designed and optimized for multichannel signals (from few channels to several hundred). If data allows it, the library automatically switch to optimized SIMD (Single Instruction Multiple Data) code, allowing to reduce by 3~4 the time spent in processing the data.
We can use yum
or dnf
to install rtfilter
on Fedora 34. In this tutorial we discuss both methods but you only need to choose one of method to install rtfilter.
Install rtfilter 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 rtfilter
using dnf
by running the following command:
sudo dnf -y install rtfilter
Install rtfilter 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 rtfilter
using yum
by running the following command:
sudo yum -y install rtfilter
How To Uninstall rtfilter on Fedora 34
To uninstall only the rtfilter
package we can use the following command:
sudo dnf remove rtfilter
rtfilter Package Contents on Fedora 34
/usr/lib/.build-id
/usr/lib/.build-id/48
/usr/lib/.build-id/48/980fd4a75b30ee1f2c7eae6a06f7a76d51c347
/usr/lib64/librtfilter.so.1
/usr/lib64/librtfilter.so.1.0.1
/usr/share/doc/rtfilter
/usr/share/doc/rtfilter/AUTHORS
/usr/share/doc/rtfilter/NEWS
/usr/share/doc/rtfilter/README
/usr/share/licenses/rtfilter
/usr/share/licenses/rtfilter/COPYING
/usr/lib/.build-id
/usr/lib/.build-id/fa
/usr/lib/.build-id/fa/1b4ca9d7220563493518680a625f62598e7b2b
/usr/lib/librtfilter.so.1
/usr/lib/librtfilter.so.1.0.1
/usr/share/doc/rtfilter
/usr/share/doc/rtfilter/AUTHORS
/usr/share/doc/rtfilter/NEWS
/usr/share/doc/rtfilter/README
/usr/share/licenses/rtfilter
/usr/share/licenses/rtfilter/COPYING
References
- [rtfilter website](http://cnbi.epfl.ch/software/rtfilter.html http://cnbi.epfl.ch/software/rtfilter.html)
Summary
In this tutorial we learn how to install rtfilter
on Fedora 34 using yum and dnf.