How To Install z80dasm on Fedora 34

z80dasm is Z80 Disassembler

Introduction

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

What is z80dasm

z80dasm is a disassembler for the Zilog Z80 microprocessor and compatibles. It can be used to reverse engineer programs and operating systems for 1980’s microcomputers using this processor architecture (for example ZX81, Spectrum, Galaksija and many others). Generated assembly code can be assembled back with a number of Z80 assemblers. Compatibility with z80asm was thoroughly tested.

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

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

sudo dnf -y install z80dasm

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

sudo yum -y install z80dasm

How To Uninstall z80dasm on Fedora 34

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

sudo dnf remove z80dasm

z80dasm Package Contents on Fedora 34

/usr/bin/z80dasm
/usr/lib/.build-id
/usr/lib/.build-id/a2
/usr/lib/.build-id/a2/0116033217df69c5aed408c5010dbcb1c22401
/usr/share/doc/z80dasm
/usr/share/doc/z80dasm/AUTHORS
/usr/share/doc/z80dasm/NEWS
/usr/share/doc/z80dasm/README
/usr/share/licenses/z80dasm
/usr/share/licenses/z80dasm/COPYING
/usr/share/man/man1/z80dasm.1.gz

References

Summary

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