How To Install bustle on Fedora 36
Introduction
In this tutorial we learn how to install bustle
on Fedora 36.
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 36. In this tutorial we discuss both methods but you only need to choose one of method to install bustle.
Install bustle 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 bustle
using dnf
by running the following command:
sudo dnf -y install bustle
Install bustle 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 bustle
using yum
by running the following command:
sudo yum -y install bustle
How To Uninstall bustle on Fedora 36
To uninstall only the bustle
package we can use the following command:
sudo dnf remove bustle
bustle Package Contents on Fedora 36
/usr/bin/bustle
/usr/bin/bustle-pcap
/usr/lib/.build-id
/usr/lib/.build-id/30
/usr/lib/.build-id/30/3351ab37ed3cfe48169386e713328ad6eeb7cc
/usr/lib/.build-id/51
/usr/lib/.build-id/51/aec6893fa62dc65ac6e56a300d33fd02d82ddc
/usr/share/appdata/org.freedesktop.Bustle.appdata.xml
/usr/share/applications/org.freedesktop.Bustle.desktop
/usr/share/bustle-0.8.0
/usr/share/bustle-0.8.0/data
/usr/share/bustle-0.8.0/data/FilterDialog.ui
/usr/share/bustle-0.8.0/data/OpenTwoDialog.ui
/usr/share/bustle-0.8.0/data/RecordAddressDialog.ui
/usr/share/bustle-0.8.0/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/scalable/apps/org.freedesktop.Bustle-symbolic.svg
/usr/share/icons/hicolor/scalable/apps/org.freedesktop.Bustle.Devel.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 36 using yum and [dnf]((/fedora/36/dnf/).