How To Install objectweb-asm on Fedora 36

In this tutorial we learn how to install objectweb-asm in Fedora 36. objectweb-asm is Java bytecode manipulation and analysis framework

Introduction

In this tutorial we learn how to install objectweb-asm on Fedora 36.

What is objectweb-asm

ASM is an all purpose Java bytecode manipulation and analysis framework. It can be used to modify existing classes or dynamically generate classes, directly in binary form. Provided common transformations and analysis algorithms allow to easily assemble custom complex transformations and code analysis tools.

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

Install objectweb-asm on Fedora 36 Using dnf

Update yum database with dnf using the following command.

sudo dnf makecache --refresh

After updating yum database, We can install objectweb-asm using dnf by running the following command:

sudo dnf -y install objectweb-asm

Install objectweb-asm on Fedora 36 Using yum

Update yum database with yum using the following command.

sudo yum makecache --refresh

After updating yum database, We can install objectweb-asm using yum by running the following command:

sudo yum -y install objectweb-asm

How To Uninstall objectweb-asm on Fedora 36

To uninstall only the objectweb-asm package we can use the following command:

sudo dnf remove objectweb-asm

objectweb-asm Package Contents on Fedora 36

/usr/bin/objectweb-asm-processor
/usr/share/java/objectweb-asm
/usr/share/java/objectweb-asm/asm-analysis.jar
/usr/share/java/objectweb-asm/asm-commons.jar
/usr/share/java/objectweb-asm/asm-tree.jar
/usr/share/java/objectweb-asm/asm-util.jar
/usr/share/java/objectweb-asm/asm.jar
/usr/share/licenses/objectweb-asm
/usr/share/licenses/objectweb-asm/LICENSE.txt
/usr/share/maven-metadata/objectweb-asm.xml
/usr/share/maven-poms/objectweb-asm
/usr/share/maven-poms/objectweb-asm/asm-analysis.pom
/usr/share/maven-poms/objectweb-asm/asm-commons.pom
/usr/share/maven-poms/objectweb-asm/asm-tree.pom
/usr/share/maven-poms/objectweb-asm/asm-util.pom
/usr/share/maven-poms/objectweb-asm/asm.pom

References

Summary

In this tutorial we learn how to install objectweb-asm on Fedora 36 using yum and [dnf]((/fedora/36/dnf/).