How To Install Field3D on Fedora 34

Field3D is Library for storing voxel data Library for storing voxel data

Introduction

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

What is Field3D

Field3D is an open source library for storing voxel data. It provides C++ classes that handle in-memory storage and a file format based on HDF5 that allows the C++ objects to be written to and read from disk. Field3D 1.7.3 10.fc34 x86_64 546 k Field3D-1.7.3-10.fc34.src.rpm fedora Library for storing voxel data https BSD Field3D is an open source library for storing voxel data. It provides C++ classes that handle in-memory storage and a file format based on HDF5 that allows the C++ objects to be written to and read from disk.

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

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

sudo dnf -y install Field3D

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

sudo yum -y install Field3D

How To Uninstall Field3D on Fedora 34

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

sudo dnf remove Field3D

Field3D Package Contents on Fedora 34

/usr/bin/f3dinfo
/usr/lib/.build-id
/usr/lib/.build-id/05
/usr/lib/.build-id/05/f235e4c63f6ce2778b7863f72de8d7354c9bb7
/usr/lib/.build-id/30
/usr/lib/.build-id/30/c48f36715974b313e3f939190b7d40cc4114a8
/usr/lib64/libField3D.so.1.7
/usr/lib64/libField3D.so.1.7.3
/usr/share/doc/Field3D
/usr/share/doc/Field3D/CHANGES
/usr/share/doc/Field3D/README
/usr/share/licenses/Field3D
/usr/share/licenses/Field3D/COPYING
/usr/share/man/man1/f3dinfo.1.gz
/usr/bin/f3dinfo
/usr/lib/.build-id
/usr/lib/.build-id/0f
/usr/lib/.build-id/0f/66674d09551f31f05c03091332c5cce514e256
/usr/lib/.build-id/ef
/usr/lib/.build-id/ef/1eba3d95f86d8c5036e85084e39aa4bb73ab75
/usr/lib/libField3D.so.1.7
/usr/lib/libField3D.so.1.7.3
/usr/share/doc/Field3D
/usr/share/doc/Field3D/CHANGES
/usr/share/doc/Field3D/README
/usr/share/licenses/Field3D
/usr/share/licenses/Field3D/COPYING
/usr/share/man/man1/f3dinfo.1.gz

References

Summary

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