How To Install libmarkdown on Fedora 34

libmarkdown is A fast implementation of the Markdown language in C A fast implementation of the Markdown language in C

Introduction

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

What is libmarkdown

libmarkdown is the library portion of discount, a fast Markdown language implementation, written in C. libmarkdown 2.2.4 6.fc34 x86_64 46 k discount-2.2.4-6.fc34.src.rpm fedora A fast implementation of the Markdown language in C http BSD libmarkdown is the library portion of discount, a fast Markdown language implementation, written in C.

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

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

sudo dnf -y install libmarkdown

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

sudo yum -y install libmarkdown

How To Uninstall libmarkdown on Fedora 34

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

sudo dnf remove libmarkdown

libmarkdown Package Contents on Fedora 34

/usr/lib/.build-id
/usr/lib/.build-id/98
/usr/lib/.build-id/98/967f566a7c90f99cb6a244a6d7313de517ca82
/usr/lib64/libmarkdown.so.2
/usr/lib64/libmarkdown.so.2.2.4
/usr/share/doc/libmarkdown
/usr/share/doc/libmarkdown/COPYRIGHT
/usr/share/doc/libmarkdown/CREDITS
/usr/share/doc/libmarkdown/README
/usr/lib/.build-id
/usr/lib/.build-id/f4
/usr/lib/.build-id/f4/0c9b558b35985af5ace3625e48d1220acddd71
/usr/lib/libmarkdown.so.2
/usr/lib/libmarkdown.so.2.2.4
/usr/share/doc/libmarkdown
/usr/share/doc/libmarkdown/COPYRIGHT
/usr/share/doc/libmarkdown/CREDITS
/usr/share/doc/libmarkdown/README

References

Summary

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