How To Install tiedot on Fedora 34

tiedot is NoSQL database

Introduction

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

What is tiedot

Your NoSQL database powered by Golang.

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

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

sudo dnf -y install tiedot

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

sudo yum -y install tiedot

How To Uninstall tiedot on Fedora 34

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

sudo dnf remove tiedot

tiedot Package Contents on Fedora 34

/usr/bin/tiedot
/usr/lib/.build-id
/usr/lib/.build-id/45
/usr/lib/.build-id/45/e25c440e05ef0b503db1da4b41ca6a0cca61b7
/usr/lib/systemd/system/tiedot.service
/usr/share/doc/tiedot
/usr/share/doc/tiedot/README-gommap.md
/usr/share/doc/tiedot/README.md
/usr/share/doc/tiedot/doc
/usr/share/doc/tiedot/doc/API-reference-and-embedded-usage.md
/usr/share/doc/tiedot/doc/Concurrency-and-networking.md
/usr/share/doc/tiedot/doc/Contributors-and-License.md
/usr/share/doc/tiedot/doc/Data-structures.md
/usr/share/doc/tiedot/doc/Home.md
/usr/share/doc/tiedot/doc/Limitations.md
/usr/share/doc/tiedot/doc/Performance-tuning-and-benchmarks.md
/usr/share/doc/tiedot/doc/Query-processor-and-index.md
/usr/share/doc/tiedot/doc/Tutorial.md
/usr/share/doc/tiedot/doc/Version-History.md
/usr/share/licenses/tiedot
/usr/share/licenses/tiedot/LICENSE
/usr/share/licenses/tiedot/LICENSE-gommap

References

Summary

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