How To Install bustle on Fedora 34
Introduction
In this tutorial we learn how to install bustle
on Fedora 34.
What is bustle
Bustle records and draws sequence diagrams of D-Bus activity, showing signal emissions, method calls and their corresponding returns, with timestamps for each individual event and the duration of each method call. This can help you check for unwanted D-Bus traffic, and pinpoint why your D-Bus-based application isn’t performing as well as you like. It also provides statistics like signal frequencies and average method call times.
We can use yum
or dnf
to install bustle
on Fedora 34. In this tutorial we discuss both methods but you only need to choose one of method to install bustle.
Install bustle 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 bustle
using dnf
by running the following command:
sudo dnf -y install bustle
Install bustle 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 bustle
using yum
by running the following command:
sudo yum -y install bustle
How To Uninstall bustle on Fedora 34
To uninstall only the bustle
package we can use the following command:
sudo dnf remove bustle
bustle Package Contents on Fedora 34
/usr/bin/bustle
/usr/bin/bustle-pcap
/usr/lib/.build-id
/usr/lib/.build-id/56
/usr/lib/.build-id/56/af75e915afadc525685442296596c6c33adec4
/usr/lib/.build-id/ce
/usr/lib/.build-id/ce/309312017ac3274fe4de664af9bddfa54f35cf
/usr/share/appdata/org.freedesktop.Bustle.appdata.xml
/usr/share/applications/org.freedesktop.Bustle.desktop
/usr/share/bustle-0.7.5
/usr/share/bustle-0.7.5/data
/usr/share/bustle-0.7.5/data/FilterDialog.ui
/usr/share/bustle-0.7.5/data/OpenTwoDialog.ui
/usr/share/bustle-0.7.5/data/RecordAddressDialog.ui
/usr/share/bustle-0.7.5/data/bustle.ui
/usr/share/doc/bustle
/usr/share/doc/bustle/CONTRIBUTING.md
/usr/share/doc/bustle/NEWS.md
/usr/share/doc/bustle/README.md
/usr/share/icons/hicolor/16x16/apps/org.freedesktop.Bustle.png
/usr/share/icons/hicolor/22x22/apps/org.freedesktop.Bustle.png
/usr/share/icons/hicolor/256x256/apps/org.freedesktop.Bustle.png
/usr/share/icons/hicolor/32x32/apps/org.freedesktop.Bustle.png
/usr/share/icons/hicolor/48x48/apps/org.freedesktop.Bustle.png
/usr/share/icons/hicolor/scalable/apps/org.freedesktop.Bustle-symbolic.svg
/usr/share/icons/hicolor/scalable/apps/org.freedesktop.Bustle.svg
/usr/share/licenses/bustle
/usr/share/licenses/bustle/LICENSE
/usr/share/man/man1/bustle-pcap.1.gz
References
Summary
In this tutorial we learn how to install bustle
on Fedora 34 using yum and dnf.