How To Install rrdtool on Fedora 36

In this tutorial we learn how to install rrdtool in Fedora 36. rrdtool is Round Robin Database Tool to store and display time-series data

Introduction

In this tutorial we learn how to install rrdtool on Fedora 36.

What is rrdtool

RRD is the Acronym for Round Robin Database. RRD is a system to store and display time-series data (i.e. network bandwidth, machine-room temperature, server load average). It stores the data in a very compact way that will not expand over time, and it presents useful graphs by processing the data to enforce a certain data density. It can be used either via simple wrapper scripts (from shell or Perl) or via frontends that poll network devices and put a friendly user interface on it.

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

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

sudo dnf -y install rrdtool

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

sudo yum -y install rrdtool

How To Uninstall rrdtool on Fedora 36

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

sudo dnf remove rrdtool

rrdtool Package Contents on Fedora 36

/usr/bin/rrdcached
/usr/bin/rrdcgi
/usr/bin/rrdcreate
/usr/bin/rrdinfo
/usr/bin/rrdtool
/usr/bin/rrdupdate
/usr/lib/.build-id
/usr/lib/.build-id/1c
/usr/lib/.build-id/1c/d0a5303678214d3d95e490782dc60952c30682
/usr/lib/.build-id/1c/daa62ec76ba2f7a72a8c2af7130af030745dff
/usr/lib/.build-id/95
/usr/lib/.build-id/95/cba0c18d567eda947c7f8ba4dafff05c4a82b7
/usr/lib/.build-id/b4
/usr/lib/.build-id/b4/8f43b6bd310838f13c1fbf6784133c34becf3c
/usr/lib/.build-id/b9
/usr/lib/.build-id/b9/3c57e6114133b725694e6ab6e0994d7fe0d0d4
/usr/lib/librrd.so.8
/usr/lib/librrd.so.8.2.1
/usr/lib/systemd/system/rrdcached.service
/usr/lib/systemd/system/rrdcached.socket
/usr/share/doc/rrdtool
/usr/share/doc/rrdtool/CHANGES
/usr/share/doc/rrdtool/CONTRIBUTORS
/usr/share/doc/rrdtool/COPYRIGHT
/usr/share/doc/rrdtool/NEWS
/usr/share/doc/rrdtool/THREADS
/usr/share/doc/rrdtool/TODO
/usr/share/licenses/rrdtool
/usr/share/licenses/rrdtool/LICENSE
/usr/share/locale/fr/LC_MESSAGES/rrdtool.mo
/usr/share/locale/hu/LC_MESSAGES/rrdtool.mo
/usr/share/man/man1/bin_dec_hex.1.gz
/usr/share/man/man1/cdeftutorial.1.gz
/usr/share/man/man1/rpntutorial.1.gz
/usr/share/man/man1/rrd-beginners.1.gz
/usr/share/man/man1/rrd_pdpcalc.1.gz
/usr/share/man/man1/rrdbuild.1.gz
/usr/share/man/man1/rrdcached.1.gz
/usr/share/man/man1/rrdcgi.1.gz
/usr/share/man/man1/rrdcreate.1.gz
/usr/share/man/man1/rrddump.1.gz
/usr/share/man/man1/rrdfetch.1.gz
/usr/share/man/man1/rrdfirst.1.gz
/usr/share/man/man1/rrdflushcached.1.gz
/usr/share/man/man1/rrdgraph.1.gz
/usr/share/man/man1/rrdgraph_data.1.gz
/usr/share/man/man1/rrdgraph_examples.1.gz
/usr/share/man/man1/rrdgraph_graph.1.gz
/usr/share/man/man1/rrdgraph_libdbi.1.gz
/usr/share/man/man1/rrdgraph_rpn.1.gz
/usr/share/man/man1/rrdinfo.1.gz
/usr/share/man/man1/rrdlast.1.gz
/usr/share/man/man1/rrdlastupdate.1.gz
/usr/share/man/man1/rrdlist.1.gz
/usr/share/man/man1/rrdlua.1.gz
/usr/share/man/man1/rrdresize.1.gz
/usr/share/man/man1/rrdrestore.1.gz
/usr/share/man/man1/rrdthreads.1.gz
/usr/share/man/man1/rrdtool.1.gz
/usr/share/man/man1/rrdtune.1.gz
/usr/share/man/man1/rrdtutorial.1.gz
/usr/share/man/man1/rrdupdate.1.gz
/usr/share/man/man1/rrdxport.1.gz
/usr/share/rrdtool

References

Summary

In this tutorial we learn how to install rrdtool on Fedora 36 using yum and [dnf]((/fedora/36/dnf/).


title: “How To Install rrdtool on Fedora 36” linkTitle: “rrdtool” type: “docs” description: “In this tutorial we learn how to install rrdtool in Fedora 36. rrdtool is Round Robin Database Tool to store and display time-series data” date: “2022-08-17” lastmod: “2022-08-17” #image: /images/fedora/36/rrdtool-featured.png

Introduction

In this tutorial we learn how to install rrdtool on Fedora 36.

What is rrdtool

RRD is the Acronym for Round Robin Database. RRD is a system to store and display time-series data (i.e. network bandwidth, machine-room temperature, server load average). It stores the data in a very compact way that will not expand over time, and it presents useful graphs by processing the data to enforce a certain data density. It can be used either via simple wrapper scripts (from shell or Perl) or via frontends that poll network devices and put a friendly user interface on it.

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

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

sudo dnf -y install rrdtool

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

sudo yum -y install rrdtool

How To Uninstall rrdtool on Fedora 36

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

sudo dnf remove rrdtool

rrdtool Package Contents on Fedora 36

/usr/bin/rrdcached
/usr/bin/rrdcgi
/usr/bin/rrdcreate
/usr/bin/rrdinfo
/usr/bin/rrdtool
/usr/bin/rrdupdate
/usr/lib/.build-id
/usr/lib/.build-id/40
/usr/lib/.build-id/40/d551ece66cc3cca028d33db48d6cb924825af2
/usr/lib/.build-id/56
/usr/lib/.build-id/56/1268636f7dc2a397826ec068056e70f08d1cf4
/usr/lib/.build-id/62
/usr/lib/.build-id/62/0f102ba705efb248aaf8f9a9d3919aa45d8d4b
/usr/lib/.build-id/95
/usr/lib/.build-id/95/cf8cf9af8f9071b6093b4b640ffa44356cdafe
/usr/lib/.build-id/d1
/usr/lib/.build-id/d1/d5fc74ac1558103544652274e685cf117cf956
/usr/lib/systemd/system/rrdcached.service
/usr/lib/systemd/system/rrdcached.socket
/usr/lib64/librrd.so.8
/usr/lib64/librrd.so.8.2.1
/usr/share/doc/rrdtool
/usr/share/doc/rrdtool/CHANGES
/usr/share/doc/rrdtool/CONTRIBUTORS
/usr/share/doc/rrdtool/COPYRIGHT
/usr/share/doc/rrdtool/NEWS
/usr/share/doc/rrdtool/THREADS
/usr/share/doc/rrdtool/TODO
/usr/share/licenses/rrdtool
/usr/share/licenses/rrdtool/LICENSE
/usr/share/locale/fr/LC_MESSAGES/rrdtool.mo
/usr/share/locale/hu/LC_MESSAGES/rrdtool.mo
/usr/share/man/man1/bin_dec_hex.1.gz
/usr/share/man/man1/cdeftutorial.1.gz
/usr/share/man/man1/rpntutorial.1.gz
/usr/share/man/man1/rrd-beginners.1.gz
/usr/share/man/man1/rrd_pdpcalc.1.gz
/usr/share/man/man1/rrdbuild.1.gz
/usr/share/man/man1/rrdcached.1.gz
/usr/share/man/man1/rrdcgi.1.gz
/usr/share/man/man1/rrdcreate.1.gz
/usr/share/man/man1/rrddump.1.gz
/usr/share/man/man1/rrdfetch.1.gz
/usr/share/man/man1/rrdfirst.1.gz
/usr/share/man/man1/rrdflushcached.1.gz
/usr/share/man/man1/rrdgraph.1.gz
/usr/share/man/man1/rrdgraph_data.1.gz
/usr/share/man/man1/rrdgraph_examples.1.gz
/usr/share/man/man1/rrdgraph_graph.1.gz
/usr/share/man/man1/rrdgraph_libdbi.1.gz
/usr/share/man/man1/rrdgraph_rpn.1.gz
/usr/share/man/man1/rrdinfo.1.gz
/usr/share/man/man1/rrdlast.1.gz
/usr/share/man/man1/rrdlastupdate.1.gz
/usr/share/man/man1/rrdlist.1.gz
/usr/share/man/man1/rrdlua.1.gz
/usr/share/man/man1/rrdresize.1.gz
/usr/share/man/man1/rrdrestore.1.gz
/usr/share/man/man1/rrdthreads.1.gz
/usr/share/man/man1/rrdtool.1.gz
/usr/share/man/man1/rrdtune.1.gz
/usr/share/man/man1/rrdtutorial.1.gz
/usr/share/man/man1/rrdupdate.1.gz
/usr/share/man/man1/rrdxport.1.gz
/usr/share/rrdtool

References

Summary

In this tutorial we learn how to install rrdtool on Fedora 36 using yum and [dnf]((/fedora/36/dnf/).