How To Install mimetic on Fedora 34
Introduction
In this tutorial we learn how to install mimetic
on Fedora 34.
What is mimetic
mimetic is an Email library (MIME) written in C++ designed to be easy to use and integrate but yet fast and efficient. It has been built around the standard lib. This means that you’ll not find yet another string class or list implementation and that you’ll feel comfortable in using this library from the very first time. Most classes functionalities and behavior will be clear if you ever studied MIME and its components; if you don’t know anything about Internet messages you’ll probably want to read some RFCs to understand the topic and, therefore, easily use the library whose names, whenever possible, overlap terms adopted in the standard RFC documents. At the very least 2046. mimetic 0.9.8 17.fc34 x86_64 101 k mimetic-0.9.8-17.fc34.src.rpm fedora A full featured C++ MIME library http MIT mimetic is an Email library (MIME) written in C++ designed to be easy to use and integrate but yet fast and efficient. It has been built around the standard lib. This means that you’ll not find yet another string class or list implementation and that you’ll feel comfortable in using this library from the very first time. Most classes functionalities and behavior will be clear if you ever studied MIME and its components; if you don’t know anything about Internet messages you’ll probably want to read some RFCs to understand the topic and, therefore, easily use the library whose names, whenever possible, overlap terms adopted in the standard RFC documents. At the very least 2046.
We can use yum
or dnf
to install mimetic
on Fedora 34. In this tutorial we discuss both methods but you only need to choose one of method to install mimetic.
Install mimetic 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 mimetic
using dnf
by running the following command:
sudo dnf -y install mimetic
Install mimetic 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 mimetic
using yum
by running the following command:
sudo yum -y install mimetic
How To Uninstall mimetic on Fedora 34
To uninstall only the mimetic
package we can use the following command:
sudo dnf remove mimetic
mimetic Package Contents on Fedora 34
/usr/lib/.build-id
/usr/lib/.build-id/e9
/usr/lib/.build-id/e9/8c13ec6fa842caf3eaa9c2cac7bf8b3872fc34
/usr/lib/libmimetic.so.0
/usr/lib/libmimetic.so.0.0.0
/usr/share/doc/mimetic
/usr/share/doc/mimetic/AUTHORS
/usr/share/doc/mimetic/ChangeLog
/usr/share/doc/mimetic/README
/usr/share/licenses/mimetic
/usr/share/licenses/mimetic/COPYING
/usr/share/licenses/mimetic/LICENSE
/usr/lib/.build-id
/usr/lib/.build-id/f5
/usr/lib/.build-id/f5/b215f2ff5cded00df817028a0ed79d6938f36c
/usr/lib64/libmimetic.so.0
/usr/lib64/libmimetic.so.0.0.0
/usr/share/doc/mimetic
/usr/share/doc/mimetic/AUTHORS
/usr/share/doc/mimetic/ChangeLog
/usr/share/doc/mimetic/README
/usr/share/licenses/mimetic
/usr/share/licenses/mimetic/COPYING
/usr/share/licenses/mimetic/LICENSE
References
- [mimetic website](http://www.codesink.org/mimetic_mime_library.html http://www.codesink.org/mimetic_mime_library.html)
Summary
In this tutorial we learn how to install mimetic
on Fedora 34 using yum and dnf.