How To Install perl-debugger on Fedora 36

In this tutorial we learn how to install perl-debugger in Fedora 36. perl-debugger is Perl debugger

Introduction

In this tutorial we learn how to install perl-debugger on Fedora 36.

What is perl-debugger

This is the perl debugger. It is loaded automatically by Perl when you invoke a script with “perl -d”. There is also “DB” module contained for a programmatic interface to the debugging API.

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

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

sudo dnf -y install perl-debugger

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

sudo yum -y install perl-debugger

How To Uninstall perl-debugger on Fedora 36

To uninstall only the perl-debugger package we can use the following command:

sudo dnf remove perl-debugger

perl-debugger Package Contents on Fedora 36

/usr/share/man/man1/perldebug.1.gz
/usr/share/man/man3/DB.3pm.gz
/usr/share/perl5/DB.pm
/usr/share/perl5/dumpvar.pl
/usr/share/perl5/perl5db.pl
/usr/share/perl5/pod
/usr/share/perl5/pod/perldebug.pod

References

Summary

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