How To Install libmseed on Fedora 34
Introduction
In this tutorial we learn how to install libmseed
on Fedora 34.
What is libmseed
The Mini-SEED library provides a framework for manipulation of SEED data records including the unpacking and packing of data records. Functionality is also included for managing waveform data as continuous traces. All structures of SEED 2.4 data records are supported with the following exceptions Blockette 2000 opaque data which has an unknown data structure by definition and Blockette 405 which depends on full SEED (SEED including full ASCII headers) for a full data description. libmseed 2.19.5 10.fc34 x86_64 110 k libmseed-2.19.5-10.fc34.src.rpm fedora A C library framework for manipulating and managing SEED data records https LGPLv3+ The Mini-SEED library provides a framework for manipulation of SEED data records including the unpacking and packing of data records. Functionality is also included for managing waveform data as continuous traces. All structures of SEED 2.4 data records are supported with the following exceptions Blockette 2000 opaque data which has an unknown data structure by definition and Blockette 405 which depends on full SEED (SEED including full ASCII headers) for a full data description.
We can use yum
or dnf
to install libmseed
on Fedora 34. In this tutorial we discuss both methods but you only need to choose one of method to install libmseed.
Install libmseed 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 libmseed
using dnf
by running the following command:
sudo dnf -y install libmseed
Install libmseed 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 libmseed
using yum
by running the following command:
sudo yum -y install libmseed
How To Uninstall libmseed on Fedora 34
To uninstall only the libmseed
package we can use the following command:
sudo dnf remove libmseed
libmseed Package Contents on Fedora 34
/usr/bin/msrepack
/usr/bin/msview
/usr/lib/.build-id
/usr/lib/.build-id/29
/usr/lib/.build-id/29/6dc349c33fb77d28ed535bf2f95e227fbb9529
/usr/lib/.build-id/4b
/usr/lib/.build-id/4b/ed31085e2e9c9d435d8e55eec306108b7277fb
/usr/lib/.build-id/ef
/usr/lib/.build-id/ef/ba8083960837ae69f9c812ef254619d36fe8a9
/usr/lib64/libmseed.so.2
/usr/lib64/libmseed.so.2.19.5
/usr/share/doc/libmseed
/usr/share/doc/libmseed/ChangeLog
/usr/share/doc/libmseed/README.byteorder
/usr/share/doc/libmseed/README.md
/usr/share/licenses/libmseed
/usr/share/licenses/libmseed/LICENSE.txt
/usr/bin/msrepack
/usr/bin/msview
/usr/lib/.build-id
/usr/lib/.build-id/b2
/usr/lib/.build-id/b2/d36f94ebde21d485ccb5dea979cebf6e099288
/usr/lib/.build-id/df
/usr/lib/.build-id/df/814fb8fbff1938d7b9631306ae05dd504ab6e0
/usr/lib/.build-id/e2
/usr/lib/.build-id/e2/446de0be9967d25a7ebfc55b66aaac84674495
/usr/lib/libmseed.so.2
/usr/lib/libmseed.so.2.19.5
/usr/share/doc/libmseed
/usr/share/doc/libmseed/ChangeLog
/usr/share/doc/libmseed/README.byteorder
/usr/share/doc/libmseed/README.md
/usr/share/licenses/libmseed
/usr/share/licenses/libmseed/LICENSE.txt
References
- [libmseed website](https://www.iris.edu/ds/nodes/dmc/software/downloads/libmseed https://www.iris.edu/ds/nodes/dmc/software/downloads/libmseed)
Summary
In this tutorial we learn how to install libmseed
on Fedora 34 using yum and dnf.