How To Install rr on Fedora 36
Introduction
In this tutorial we learn how to install rr
on Fedora 36.
What is rr
rr is a lightweight tool for recording and replaying execution of applications (trees of processes and threads). For more information, please visit http
We can use yum
or dnf
to install rr
on Fedora 36. In this tutorial we discuss both methods but you only need to choose one of method to install rr.
Install rr 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 rr
using dnf
by running the following command:
sudo dnf -y install rr
Install rr 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 rr
using yum
by running the following command:
sudo yum -y install rr
How To Uninstall rr on Fedora 36
To uninstall only the rr
package we can use the following command:
sudo dnf remove rr
rr Package Contents on Fedora 36
/usr/bin/rr
/usr/bin/rr-collect-symbols.py
/usr/bin/rr_exec_stub
/usr/bin/signal-rr-recording.sh
/usr/lib/.build-id
/usr/lib/.build-id/30
/usr/lib/.build-id/30/c2fa8c7375f66b528606a091ef259666fd113f
/usr/lib/.build-id/61
/usr/lib/.build-id/61/dd40a97f2d73aff06a2e54aef79d13e94245dc
/usr/lib64/rr
/usr/lib64/rr/librraudit.so
/usr/lib64/rr/librrpage.so
/usr/lib64/rr/librrpreload.so
/usr/share/bash-completion/completions/rr
/usr/share/rr
/usr/share/rr/32bit-avx.xml
/usr/share/rr/32bit-core.xml
/usr/share/rr/32bit-linux.xml
/usr/share/rr/32bit-sse.xml
/usr/share/rr/64bit-avx.xml
/usr/share/rr/64bit-core.xml
/usr/share/rr/64bit-linux.xml
/usr/share/rr/64bit-seg.xml
/usr/share/rr/64bit-sse.xml
/usr/share/rr/aarch64-core.xml
/usr/share/rr/aarch64-fpu.xml
/usr/share/rr/aarch64-pauth.xml
/usr/share/rr/amd64-avx-linux.xml
/usr/share/rr/amd64-linux.xml
/usr/share/rr/i386-avx-linux.xml
/usr/share/rr/i386-linux.xml
References
Summary
In this tutorial we learn how to install rr
on Fedora 36 using yum and [dnf]((/fedora/36/dnf/).