How To Install libminc on Fedora 34

libminc is Core library and API of the MINC toolkit Core library and API of the MINC toolkit

Introduction

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

What is libminc

The MINC file format is a highly flexible medical image file format built on the HDF5 generalized data format. The format is simple, self-describing, extensible, portable and N-dimensional, with programming interfaces for both low-level data access and high-level volume manipulation. On top of the libraries is a suite of generic image-file manipulation tools. The format, libraries and tools are designed for use in a medical-imaging research environment simple and powerful and make no attempt to provide a pretty interface to users. libminc 2.4.03 8.fc34 x86_64 273 k libminc-2.4.03-8.fc34.src.rpm fedora Core library and API of the MINC toolkit https MIT The MINC file format is a highly flexible medical image file format built on the HDF5 generalized data format. The format is simple, self-describing, extensible, portable and N-dimensional, with programming interfaces for both low-level data access and high-level volume manipulation. On top of the libraries is a suite of generic image-file manipulation tools. The format, libraries and tools are designed for use in a medical-imaging research environment simple and powerful and make no attempt to provide a pretty interface to users.

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

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

sudo dnf -y install libminc

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

sudo yum -y install libminc

How To Uninstall libminc on Fedora 34

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

sudo dnf remove libminc

libminc Package Contents on Fedora 34

/usr/lib/.build-id
/usr/lib/.build-id/24
/usr/lib/.build-id/24/274793671cda07a0e57870ff130873e2252f4c
/usr/lib/.build-id/86
/usr/lib/.build-id/86/6acaa1d22a59973fa998aa8fb0d6dc35181547
/usr/lib/libminc2.so.5.2.0
/usr/lib/libminc_io.so.5.2.0
/usr/share/doc/libminc
/usr/share/doc/libminc/AUTHORS
/usr/share/doc/libminc/ChangeLog
/usr/share/doc/libminc/NEWS
/usr/share/doc/libminc/README
/usr/share/doc/libminc/README.release
/usr/share/doc/libminc/doc
/usr/share/doc/libminc/doc/README.md
/usr/share/licenses/libminc
/usr/share/licenses/libminc/COPYING
/usr/lib/.build-id
/usr/lib/.build-id/64
/usr/lib/.build-id/64/d504935cc8a0eba3974788825945b119a01720
/usr/lib/.build-id/ae
/usr/lib/.build-id/ae/e37b3d4347f09c0fb785e1532a0c19b1821c09
/usr/lib64/libminc2.so.5.2.0
/usr/lib64/libminc_io.so.5.2.0
/usr/share/doc/libminc
/usr/share/doc/libminc/AUTHORS
/usr/share/doc/libminc/ChangeLog
/usr/share/doc/libminc/NEWS
/usr/share/doc/libminc/README
/usr/share/doc/libminc/README.release
/usr/share/doc/libminc/doc
/usr/share/doc/libminc/doc/README.md
/usr/share/licenses/libminc
/usr/share/licenses/libminc/COPYING

References

Summary

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