How To Install libuninum on Fedora 34
Introduction
In this tutorial we learn how to install libuninum
on Fedora 34.
What is libuninum
libuninum is a library for converting Unicode strings to numbers. Internal computation is done using arbitrary precision arithmetic, so there is no limit on the size of the integer that can be converted. The value is returned as an ASCII decimal string, a GNU MP object, or an unsigned long integer. Auto-detection of the number system is provided. The number systems supported include Arabic, Armenian, Balinese, Bengali, Burmese, Chinese, Cyrillic, Devanagari, Egyptian, Ethiopic, Glagolitic, Greek, Gujarati, Gurmukhi, Hebrew, Kannada, Khmer, Klingon, Lao, Limbu, Malayalam, Mongolian, New Tai Lue, Nko, Old Italic, Old Persian, Odia, Osmanya, Perso-Arabic, Phoenician, Roman Numerals, Tamil, Telugu, Tengwar, Thai, and Tibetan. libuninum 2.7 28.fc34 x86_64 71 k libuninum-2.7-28.fc34.src.rpm fedora Library for converting unicode strings to numbers http GPLv2 and LGPLv2 libuninum is a library for converting Unicode strings to numbers. Internal computation is done using arbitrary precision arithmetic, so there is no limit on the size of the integer that can be converted. The value is returned as an ASCII decimal string, a GNU MP object, or an unsigned long integer. Auto-detection of the number system is provided. The number systems supported include Arabic, Armenian, Balinese, Bengali, Burmese, Chinese, Cyrillic, Devanagari, Egyptian, Ethiopic, Glagolitic, Greek, Gujarati, Gurmukhi, Hebrew, Kannada, Khmer, Klingon, Lao, Limbu, Malayalam, Mongolian, New Tai Lue, Nko, Old Italic, Old Persian, Odia, Osmanya, Perso-Arabic, Phoenician, Roman Numerals, Tamil, Telugu, Tengwar, Thai, and Tibetan.
We can use yum
or dnf
to install libuninum
on Fedora 34. In this tutorial we discuss both methods but you only need to choose one of method to install libuninum.
Install libuninum 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 libuninum
using dnf
by running the following command:
sudo dnf -y install libuninum
Install libuninum 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 libuninum
using yum
by running the following command:
sudo yum -y install libuninum
How To Uninstall libuninum on Fedora 34
To uninstall only the libuninum
package we can use the following command:
sudo dnf remove libuninum
libuninum Package Contents on Fedora 34
/usr/bin/numconv
/usr/lib/.build-id
/usr/lib/.build-id/7d
/usr/lib/.build-id/7d/4eebf8db44a3ecc7a1d0c58c5e15be50ae57c2
/usr/lib/.build-id/83
/usr/lib/.build-id/83/a0510a1f4ceb3f404db42939f78861b13155b4
/usr/lib64/libuninum.so.5
/usr/lib64/libuninum.so.5.3.0
/usr/share/doc/libuninum
/usr/share/doc/libuninum/AUTHORS
/usr/share/doc/libuninum/CREDITS
/usr/share/doc/libuninum/ChangeLog
/usr/share/doc/libuninum/Examples
/usr/share/doc/libuninum/Examples/Makefile
/usr/share/doc/libuninum/Examples/MinimalExample.c
/usr/share/doc/libuninum/Examples/NotQuiteAsMinimalExample.c
/usr/share/doc/libuninum/Examples/README
/usr/share/doc/libuninum/NEWS
/usr/share/doc/libuninum/README
/usr/share/doc/libuninum/README_NUMBERCONVERTER
/usr/share/doc/libuninum/TODO
/usr/share/licenses/libuninum
/usr/share/licenses/libuninum/COPYING
/usr/share/man/man1/numconv.1.gz
/usr/bin/numconv
/usr/lib/.build-id
/usr/lib/.build-id/84
/usr/lib/.build-id/84/35cbd613a6b1bcbe8dd538ee66b652aba4f34d
/usr/lib/.build-id/bb
/usr/lib/.build-id/bb/74e30f52205877eeb1f8cf10dc361e778520aa
/usr/lib/libuninum.so.5
/usr/lib/libuninum.so.5.3.0
/usr/share/doc/libuninum
/usr/share/doc/libuninum/AUTHORS
/usr/share/doc/libuninum/CREDITS
/usr/share/doc/libuninum/ChangeLog
/usr/share/doc/libuninum/Examples
/usr/share/doc/libuninum/Examples/Makefile
/usr/share/doc/libuninum/Examples/MinimalExample.c
/usr/share/doc/libuninum/Examples/NotQuiteAsMinimalExample.c
/usr/share/doc/libuninum/Examples/README
/usr/share/doc/libuninum/NEWS
/usr/share/doc/libuninum/README
/usr/share/doc/libuninum/README_NUMBERCONVERTER
/usr/share/doc/libuninum/TODO
/usr/share/licenses/libuninum
/usr/share/licenses/libuninum/COPYING
/usr/share/man/man1/numconv.1.gz
References
- [libuninum website](http://billposer.org/Software/libuninum.html http://billposer.org/Software/libuninum.html)
Summary
In this tutorial we learn how to install libuninum
on Fedora 34 using yum and dnf.