How To Install umr on Fedora 34

umr is AMDGPU Userspace Register Debugger AMDGPU Userspace Register Debugger

Introduction

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

What is umr

AMDGPU Userspace Register Debugger (UMR) is a tool to read and display, as well as write to AMDGPU device MMIO, PCIE, SMC, and DIDT registers via userspace. umr 1.0 9.20210115git8bf83ae.fc34 x86_64 4.0 M umr-1.0-9.20210115git8bf83ae.fc34.src.rpm fedora AMDGPU Userspace Register Debugger https MIT AMDGPU Userspace Register Debugger (UMR) is a tool to read and display, as well as write to AMDGPU device MMIO, PCIE, SMC, and DIDT registers via userspace.

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

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

sudo dnf -y install umr

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

sudo yum -y install umr

How To Uninstall umr on Fedora 34

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

sudo dnf remove umr

umr Package Contents on Fedora 34

/usr/bin/umr
/usr/lib/.build-id
/usr/lib/.build-id/21
/usr/lib/.build-id/21/4f5880fcab0693cbeeba9126fb5d13cb3d71d2
/usr/share/bash-completion/completions/umr
/usr/share/doc/umr
/usr/share/doc/umr/README
/usr/share/licenses/umr
/usr/share/licenses/umr/LICENSE
/usr/share/man/man1/umr.1.gz
/usr/bin/umr
/usr/lib/.build-id
/usr/lib/.build-id/52
/usr/lib/.build-id/52/36a7a82ff60385f4256ad24c9ecf8c376e19f0
/usr/share/bash-completion/completions/umr
/usr/share/doc/umr
/usr/share/doc/umr/README
/usr/share/licenses/umr
/usr/share/licenses/umr/LICENSE
/usr/share/man/man1/umr.1.gz

References

Summary

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