How To Install scanmem on Fedora 36
Introduction
In this tutorial we learn how to install scanmem
on Fedora 36.
What is scanmem
scanmem is a simple interactive debugging utility, used to locate the address of a variable in an executing process. This can be used for the analysis or modification of a hostile process on a compromised machine, reverse engineering, or as a “pokefinder” to cheat at video games.
We can use yum
or dnf
to install scanmem
on Fedora 36. In this tutorial we discuss both methods but you only need to choose one of method to install scanmem.
Install scanmem 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 scanmem
using dnf
by running the following command:
sudo dnf -y install scanmem
Install scanmem 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 scanmem
using yum
by running the following command:
sudo yum -y install scanmem
How To Uninstall scanmem on Fedora 36
To uninstall only the scanmem
package we can use the following command:
sudo dnf remove scanmem
scanmem Package Contents on Fedora 36
/usr/bin/scanmem
/usr/lib/.build-id
/usr/lib/.build-id/9f
/usr/lib/.build-id/9f/abfc32f7ab7b5057f64a176f1f59432e860671
/usr/share/doc/scanmem
/usr/share/doc/scanmem/README
/usr/share/man/man1/scanmem.1.gz
References
Summary
In this tutorial we learn how to install scanmem
on Fedora 36 using yum and [dnf]((/fedora/36/dnf/).