How To Install valkyrie on Fedora 34

valkyrie is Graphical User Interface for Valgrind Suite

Introduction

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

What is valkyrie

Valkyrie is a graphical user interface to the Valgrind suite of tools for debugging and profiling programs. It makes use of the XML output capabilities offered by Valgrind.

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

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

sudo dnf -y install valkyrie

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

sudo yum -y install valkyrie

How To Uninstall valkyrie on Fedora 34

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

sudo dnf remove valkyrie

valkyrie Package Contents on Fedora 34

/usr/bin/valkyrie
/usr/lib/.build-id
/usr/lib/.build-id/eb
/usr/lib/.build-id/eb/341d74a4fa3ec91a1594ae9796c6d68610d06c
/usr/share/applications/valkyrie.desktop
/usr/share/doc/valkyrie-2.0.0
/usr/share/doc/valkyrie-2.0.0/COPYING
/usr/share/doc/valkyrie-2.0.0/INSTALL
/usr/share/doc/valkyrie-2.0.0/README
/usr/share/doc/valkyrie-2.0.0/about_gpl.html
/usr/share/doc/valkyrie-2.0.0/about_vk.html
/usr/share/doc/valkyrie-2.0.0/images
/usr/share/doc/valkyrie-2.0.0/images/home.png
/usr/share/doc/valkyrie-2.0.0/images/hr_blue.png
/usr/share/doc/valkyrie-2.0.0/images/li-blue.png
/usr/share/doc/valkyrie-2.0.0/images/next.png
/usr/share/doc/valkyrie-2.0.0/images/prev.png
/usr/share/doc/valkyrie-2.0.0/images/screenshot_1.png
/usr/share/doc/valkyrie-2.0.0/images/up.png
/usr/share/doc/valkyrie-2.0.0/index.html
/usr/share/doc/valkyrie-2.0.0/intro.why_valkyrie.html
/usr/share/doc/valkyrie-2.0.0/introduction.html
/usr/share/doc/valkyrie-2.0.0/license-gfdl.html
/usr/share/doc/valkyrie-2.0.0/license-gpl.html
/usr/share/doc/valkyrie-2.0.0/licenses.html
/usr/share/doc/valkyrie-2.0.0/mainwindow.flags_widget.html
/usr/share/doc/valkyrie-2.0.0/mainwindow.html
/usr/share/doc/valkyrie-2.0.0/mainwindow.status_msg.html
/usr/share/doc/valkyrie-2.0.0/mainwindow.tool_bar.html
/usr/share/doc/valkyrie-2.0.0/mainwindow.tool_view.html
/usr/share/doc/valkyrie-2.0.0/mainwindow.vg_ctl_tool_bar.html
/usr/share/doc/valkyrie-2.0.0/manual.html
/usr/share/doc/valkyrie-2.0.0/options_dialog.html
/usr/share/doc/valkyrie-2.0.0/options_valgrind.html
/usr/share/doc/valkyrie-2.0.0/support.html
/usr/share/doc/valkyrie-2.0.0/tool-opts.html
/usr/share/doc/valkyrie-2.0.0/valkyrie.css
/usr/share/doc/valkyrie-2.0.0/vg-manual-cg.html
/usr/share/doc/valkyrie-2.0.0/vg-manual-core.html
/usr/share/doc/valkyrie-2.0.0/vg-manual-mc.html
/usr/share/doc/valkyrie-2.0.0/vg-manual-ms.html
/usr/share/pixmaps/valkyrie.xpm

References

Summary

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