How To Install maloc on Fedora 34

maloc is Minimal Abstraction Layer for Object-oriented C Minimal Abstraction Layer for Object-oriented C

Introduction

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

What is maloc

MALOC is a small, portable, abstract C environment library for object-oriented C programming. MALOC is used as the foundation layer for a number of scientific applications, including MC, SG, and APBS. MALOC can be used as a small stand-alone abstraction environment for writing portable C programs which need access to resources which are typically architecture-dependent, such as INET sockets, timing routines, and so on. MALOC provides abstract datatypes, memory management routines, timing routines, machine epsilon, access to UNIX and INET sockets, MPI, and so on. All things that can vary from one architecture to another are abstracted out of an application code and placed in MALOC. maloc 1.5 22.fc34 x86_64 98 k maloc-1.5-22.fc34.src.rpm fedora Minimal Abstraction Layer for Object-oriented C http GPLv2+ MALOC is a small, portable, abstract C environment library for object-oriented C programming. MALOC is used as the foundation layer for a number of scientific applications, including MC, SG, and APBS. MALOC can be used as a small stand-alone abstraction environment for writing portable C programs which need access to resources which are typically architecture-dependent, such as INET sockets, timing routines, and so on. MALOC provides abstract datatypes, memory management routines, timing routines, machine epsilon, access to UNIX and INET sockets, MPI, and so on. All things that can vary from one architecture to another are abstracted out of an application code and placed in MALOC.

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

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

sudo dnf -y install maloc

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

sudo yum -y install maloc

How To Uninstall maloc on Fedora 34

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

sudo dnf remove maloc

maloc Package Contents on Fedora 34

/usr/lib/.build-id
/usr/lib/.build-id/ba
/usr/lib/.build-id/ba/75a868f7e4f75d3fb7b9886abd978b6314fca2
/usr/lib/libmaloc.so.1
/usr/lib/libmaloc.so.1.0.0
/usr/lib/.build-id
/usr/lib/.build-id/d9
/usr/lib/.build-id/d9/0be2186453b5a9949ed23423d97889b866c106
/usr/lib64/libmaloc.so.1
/usr/lib64/libmaloc.so.1.0.0

References

Summary

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