How To Install libquentier on Fedora 34
Introduction
In this tutorial we learn how to install libquentier
on Fedora 34.
What is libquentier
This library presents a set of Qt/C++ APIs useful for applications working as feature rich desktop clients for Evernote service. The most important and useful components of the library are the following - Local storage - persistence of data downloaded from Evernote service in a local SQLite database - Synchronization - the logics of exchanging new and/or modified data with Evernote service - Note editor - the UI component capable for notes displaying and editing The library is based on the lower level functionality provided by QEverCloud library. It also serves as the functional core of Quentier application. libquentier 0.5.0 0.4.20200617git9f79dc4.fc34 x86_64 2.1 M libquentier-0.5.0-0.4.20200617git9f79dc4.fc34.src.rpm fedora Set of Qt/C++ APIs for feature rich desktop clients for Evernote service https GPLv3 or LGPLv3 This library presents a set of Qt/C++ APIs useful for applications working as feature rich desktop clients for Evernote service. The most important and useful components of the library are the following - Local storage - persistence of data downloaded from Evernote service in a local SQLite database - Synchronization - the logics of exchanging new and/or modified data with Evernote service - Note editor - the UI component capable for notes displaying and editing The library is based on the lower level functionality provided by QEverCloud library. It also serves as the functional core of Quentier application.
We can use yum
or dnf
to install libquentier
on Fedora 34. In this tutorial we discuss both methods but you only need to choose one of method to install libquentier.
Install libquentier 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 libquentier
using dnf
by running the following command:
sudo dnf -y install libquentier
Install libquentier 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 libquentier
using yum
by running the following command:
sudo yum -y install libquentier
How To Uninstall libquentier on Fedora 34
To uninstall only the libquentier
package we can use the following command:
sudo dnf remove libquentier
libquentier Package Contents on Fedora 34
/usr/lib/.build-id
/usr/lib/.build-id/bc
/usr/lib/.build-id/bc/5f69df2d12d1b084293cf1e6d59a5b2515da1b
/usr/lib64/libqt5quentier.so.0
/usr/lib64/libqt5quentier.so.0.5.0
/usr/share/doc/libquentier
/usr/share/doc/libquentier/CONTRIBUTING.md
/usr/share/doc/libquentier/README.md
/usr/share/libquentier
/usr/share/libquentier/translations
/usr/share/libquentier/translations/libquentier_ru_RU.qm
/usr/share/licenses/libquentier
/usr/share/licenses/libquentier/COPYING.LESSER
/usr/share/licenses/libquentier/COPYING.txt
/usr/lib/.build-id
/usr/lib/.build-id/c4
/usr/lib/.build-id/c4/e7d01152d58a3f37076f76dbac1ff027beabf1
/usr/lib/libqt5quentier.so.0
/usr/lib/libqt5quentier.so.0.5.0
/usr/share/doc/libquentier
/usr/share/doc/libquentier/CONTRIBUTING.md
/usr/share/doc/libquentier/README.md
/usr/share/libquentier
/usr/share/libquentier/translations
/usr/share/libquentier/translations/libquentier_ru_RU.qm
/usr/share/licenses/libquentier
/usr/share/licenses/libquentier/COPYING.LESSER
/usr/share/licenses/libquentier/COPYING.txt
References
- [libquentier website](https://github.com/d1vanov/libquentier https://github.com/d1vanov/libquentier)
Summary
In this tutorial we learn how to install libquentier
on Fedora 34 using yum and dnf.