How To Install bibtex2html on Fedora 34

bibtex2html is Collection of tools for translating from BibTeX to HTML

Introduction

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

What is bibtex2html

bibtex2html is a collection of tools for translating from BibTeX to HTML. They allow to produce, from a set of bibliography files in BibTeX format, a bibliography in HTML format.

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

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

sudo dnf -y install bibtex2html

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

sudo yum -y install bibtex2html

How To Uninstall bibtex2html on Fedora 34

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

sudo dnf remove bibtex2html

bibtex2html Package Contents on Fedora 34

/usr/bin/aux2bib
/usr/bin/bib2bib
/usr/bin/bibtex2html
/usr/lib/.build-id
/usr/lib/.build-id/2d
/usr/lib/.build-id/2d/b0ff11203fb4f0462e47c23444681916d98474
/usr/lib/.build-id/44
/usr/lib/.build-id/44/bf21ed0bdfd5d8bd88081909cfcfba198d7626
/usr/share/doc/bibtex2html
/usr/share/doc/bibtex2html/CHANGES
/usr/share/doc/bibtex2html/COPYING
/usr/share/doc/bibtex2html/GPL
/usr/share/doc/bibtex2html/README
/usr/share/doc/bibtex2html/manual.html
/usr/share/doc/bibtex2html/manual.pdf
/usr/share/man/man1/aux2bib.1.gz
/usr/share/man/man1/bib2bib.1.gz
/usr/share/man/man1/bibtex2html.1.gz

References

Summary

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