How To Install libsqlite3x on Fedora 34

libsqlite3x is A C++ Wrapper for the SQLite3 embeddable SQL database engine A C++ Wrapper for the SQLite3 embeddable SQL database engine

Introduction

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

What is libsqlite3x

sqlite3 is a slick embedded SQL server written in C. It’s easy to use, powerful, and quite fast. sqlite3x is a C++ wrapper API for working with sqlite3 databases that uses exceptions. libsqlite3x 20071018 29.fc34 x86_64 37 k libsqlite3x-20071018-29.fc34.src.rpm fedora A C++ Wrapper for the SQLite3 embeddable SQL database engine http zlib sqlite3 is a slick embedded SQL server written in C. It’s easy to use, powerful, and quite fast. sqlite3x is a C++ wrapper API for working with sqlite3 databases that uses exceptions.

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

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

sudo dnf -y install libsqlite3x

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

sudo yum -y install libsqlite3x

How To Uninstall libsqlite3x on Fedora 34

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

sudo dnf remove libsqlite3x

libsqlite3x Package Contents on Fedora 34

/usr/lib/.build-id
/usr/lib/.build-id/21
/usr/lib/.build-id/21/9447ccb93cafd08d0a937a928cecd73e36a394
/usr/lib64/libsqlite3x.so.1
/usr/lib64/libsqlite3x.so.1.0.0
/usr/share/doc/libsqlite3x
/usr/share/doc/libsqlite3x/AUTHORS
/usr/share/doc/libsqlite3x/Doxygen-index.txt
/usr/lib/.build-id
/usr/lib/.build-id/f1
/usr/lib/.build-id/f1/11e5ca38bd6d8994839c85d97c3a0c31f3eca3
/usr/lib/libsqlite3x.so.1
/usr/lib/libsqlite3x.so.1.0.0
/usr/share/doc/libsqlite3x
/usr/share/doc/libsqlite3x/AUTHORS
/usr/share/doc/libsqlite3x/Doxygen-index.txt

References

Summary

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