How to Install and Uninstall ltrace.src Package on Oracle Linux 9

Last updated: November 25,2024

1. Install "ltrace.src" package

In this section, we are going to explain the necessary steps to install ltrace.src on Oracle Linux 9

$ sudo dnf update $ sudo dnf install ltrace.src

2. Uninstall "ltrace.src" package

This tutorial shows how to uninstall ltrace.src on Oracle Linux 9:

$ sudo dnf remove ltrace.src $ sudo dnf autoremove

3. Information about the ltrace.src package on Oracle Linux 9

Last metadata expiration check: 1:11:32 ago on Thu Feb 15 07:50:05 2024.
Available Packages
Name : ltrace
Version : 0.7.91
Release : 43.el9
Architecture : src
Size : 641 k
Source : None
Repository : ol9_appstream
Summary : Tracks runtime library calls from dynamically linked executables
URL : https://gitlab.com/cespedes/ltrace
License : GPLv2+
Description : Ltrace is a debugging program which runs a specified command until the
: command exits. While the command is executing, ltrace intercepts and
: records both the dynamic library calls called by the executed process
: and the signals received by the executed process. Ltrace can also
: intercept and print system calls executed by the process.
:
: You should install ltrace if you need a sysadmin tool for tracking the
: execution of processes.