How To Install libparserutils on Fedora 34
Introduction
In this tutorial we learn how to install libparserutils
on Fedora 34.
What is libparserutils
LibParserUtils is a library for building efficient parsers, written in C. It was developed as part of the NetSurf project. Features * No mandatory dependencies (iconv() implementation optional for enhanced charset support) * A number of built-in character set converters * Mapping of character set names to/from MIB enum values * UTF-8 and UTF-16 (host endian) support functions * Various simple data structures (resizeable buffer, stack, vector) * A UTF-8 input stream * Simple C API * Portable libparserutils 0.2.4 4.fc34 x86_64 47 k libparserutils-0.2.4-4.fc34.src.rpm fedora A library for building efficient parsers http MIT LibParserUtils is a library for building efficient parsers, written in C. It was developed as part of the NetSurf project. Features * No mandatory dependencies (iconv() implementation optional for enhanced charset support) * A number of built-in character set converters * Mapping of character set names to/from MIB enum values * UTF-8 and UTF-16 (host endian) support functions * Various simple data structures (resizeable buffer, stack, vector) * A UTF-8 input stream * Simple C API * Portable
We can use yum
or dnf
to install libparserutils
on Fedora 34. In this tutorial we discuss both methods but you only need to choose one of method to install libparserutils.
Install libparserutils 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 libparserutils
using dnf
by running the following command:
sudo dnf -y install libparserutils
Install libparserutils 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 libparserutils
using yum
by running the following command:
sudo yum -y install libparserutils
How To Uninstall libparserutils on Fedora 34
To uninstall only the libparserutils
package we can use the following command:
sudo dnf remove libparserutils
libparserutils Package Contents on Fedora 34
/usr/lib/.build-id
/usr/lib/.build-id/5d
/usr/lib/.build-id/5d/a02d2a743b5c90b0d24389c978e8124b5975ef
/usr/lib64/libparserutils.so.0
/usr/lib64/libparserutils.so.0.2.4
/usr/share/doc/libparserutils
/usr/share/doc/libparserutils/README
/usr/share/licenses/libparserutils
/usr/share/licenses/libparserutils/COPYING
/usr/lib/.build-id
/usr/lib/.build-id/91
/usr/lib/.build-id/91/7f105b3027fe95917380c253a236fe82b8817b
/usr/lib/libparserutils.so.0
/usr/lib/libparserutils.so.0.2.4
/usr/share/doc/libparserutils
/usr/share/doc/libparserutils/README
/usr/share/licenses/libparserutils
/usr/share/licenses/libparserutils/COPYING
References
- [libparserutils website](http://www.netsurf-browser.org/projects/libparserutils/ http://www.netsurf-browser.org/projects/libparserutils/)
Summary
In this tutorial we learn how to install libparserutils
on Fedora 34 using yum and dnf.