How To Install bam on Fedora 34

bam is A build-system

Introduction

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

What is bam

A tool that controls process of producing executables of software from its source code. Used to build the Teeworlds game.

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

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

sudo dnf -y install bam

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

sudo yum -y install bam

How To Uninstall bam on Fedora 34

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

sudo dnf remove bam

bam Package Contents on Fedora 34

/usr/bin/bam
/usr/lib/.build-id
/usr/lib/.build-id/06
/usr/lib/.build-id/06/546c4410a4f63286cd6326c4fb04514e69a76b
/usr/share/doc/bam
/usr/share/doc/bam/docs
/usr/share/doc/bam/docs/actions.txt
/usr/share/doc/bam/docs/bam.1.txt
/usr/share/doc/bam/docs/bam_logo.png
/usr/share/doc/bam/docs/building.txt
/usr/share/doc/bam/docs/depgraph.dot
/usr/share/doc/bam/docs/introduction.txt
/usr/share/doc/bam/docs/quickstart.txt
/usr/share/doc/bam/docs/quirks.txt
/usr/share/doc/bam/examples
/usr/share/doc/bam/examples/plugin
/usr/share/doc/bam/examples/plugin/hello.c

References

Summary

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