How To Install spdlog on Fedora 34
Introduction
In this tutorial we learn how to install spdlog
on Fedora 34.
What is spdlog
This is a packaged version of the gabime/spdlog C++ logging library available at Github. spdlog 1.8.5 1.fc34 x86_64 111 k spdlog-1.8.5-1.fc34.src.rpm fedora Super fast C++ logging library https MIT This is a packaged version of the gabime/spdlog C++ logging library available at Github.
We can use yum
or dnf
to install spdlog
on Fedora 34. In this tutorial we discuss both methods but you only need to choose one of method to install spdlog.
Install spdlog 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 spdlog
using dnf
by running the following command:
sudo dnf -y install spdlog
Install spdlog 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 spdlog
using yum
by running the following command:
sudo yum -y install spdlog
How To Uninstall spdlog on Fedora 34
To uninstall only the spdlog
package we can use the following command:
sudo dnf remove spdlog
spdlog Package Contents on Fedora 34
/usr/lib/.build-id
/usr/lib/.build-id/8d
/usr/lib/.build-id/8d/2c1eff231681815758aecbd3a5fc8550de9937
/usr/lib64/libspdlog.so.1
/usr/lib64/libspdlog.so.1.8.5
/usr/share/doc/spdlog
/usr/share/doc/spdlog/README.md
/usr/share/licenses/spdlog
/usr/share/licenses/spdlog/LICENSE
/usr/lib/.build-id
/usr/lib/.build-id/fa
/usr/lib/.build-id/fa/0e3f1e7f0ca355433e5cc208d38d6a739bbe09
/usr/lib/libspdlog.so.1
/usr/lib/libspdlog.so.1.8.5
/usr/share/doc/spdlog
/usr/share/doc/spdlog/README.md
/usr/share/licenses/spdlog
/usr/share/licenses/spdlog/LICENSE
References
- [spdlog website](https://github.com/gabime/spdlog https://github.com/gabime/spdlog)
Summary
In this tutorial we learn how to install spdlog
on Fedora 34 using yum and dnf.