How To Install eegdev on Fedora 34
Introduction
In this tutorial we learn how to install eegdev
on Fedora 34.
What is eegdev
eegdev is a library that provides a unified interface for accessing various EEG (and other biosignals) acquisition systems. This interface has been designed to be both flexible and efficient. The device specific part is implemented by the mean of plugins which makes adding new device backend fairly easy even if the library does not support them yet officially. The core library not only provides to users a unified and consistent interfaces to the acquisition device but it also provides many functionalities to the device backends (plugins) ranging from configuration to data casting and scaling making writing new device backend an easy task. eegdev 0.2 12.fc34 x86_64 31 k eegdev-0.2-12.fc34.src.rpm fedora Library to acquire data from various EEG recording devices http LGPLv3+ eegdev is a library that provides a unified interface for accessing various EEG (and other biosignals) acquisition systems. This interface has been designed to be both flexible and efficient. The device specific part is implemented by the mean of plugins which makes adding new device backend fairly easy even if the library does not support them yet officially. The core library not only provides to users a unified and consistent interfaces to the acquisition device but it also provides many functionalities to the device backends (plugins) ranging from configuration to data casting and scaling making writing new device backend an easy task.
We can use yum
or dnf
to install eegdev
on Fedora 34. In this tutorial we discuss both methods but you only need to choose one of method to install eegdev.
Install eegdev 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 eegdev
using dnf
by running the following command:
sudo dnf -y install eegdev
Install eegdev 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 eegdev
using yum
by running the following command:
sudo yum -y install eegdev
How To Uninstall eegdev on Fedora 34
To uninstall only the eegdev
package we can use the following command:
sudo dnf remove eegdev
eegdev Package Contents on Fedora 34
/usr/lib/.build-id
/usr/lib/.build-id/d2
/usr/lib/.build-id/d2/3aed34f9deb927a8ed06e72829f57df5486a26
/usr/lib/eegdev
/usr/lib/libeegdev.so.0
/usr/lib/libeegdev.so.0.0.2
/usr/share/doc/eegdev
/usr/share/doc/eegdev/AUTHORS
/usr/share/doc/eegdev/NEWS
/usr/share/licenses/eegdev
/usr/share/licenses/eegdev/COPYING
/usr/share/man/man5/eegdev-open-options.5.gz
/usr/lib/.build-id
/usr/lib/.build-id/e4
/usr/lib/.build-id/e4/7dcc7a2e83eb641a81fa2932b2448375cada86
/usr/lib64/eegdev
/usr/lib64/libeegdev.so.0
/usr/lib64/libeegdev.so.0.0.2
/usr/share/doc/eegdev
/usr/share/doc/eegdev/AUTHORS
/usr/share/doc/eegdev/NEWS
/usr/share/licenses/eegdev
/usr/share/licenses/eegdev/COPYING
/usr/share/man/man5/eegdev-open-options.5.gz
References
Summary
In this tutorial we learn how to install eegdev
on Fedora 34 using yum and dnf.