How To Install logiweb on Fedora 34

logiweb is A system for electronic distribution of mathematics

Introduction

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

What is logiweb

Logiweb allows to web publish ‘Logiweb pages’, i.e. journal quality articles which contain machine readable objects like programs, testsuites, definitions, axioms, lemmas, and proofs. Among other, Logiweb is suited for literate programming, for publication of machine verified proofs, and for writing proof checkers. Logiweb allows Logiweb pages to reference previously published Logiweb pages such that programs on a page may call programs on referenced pages, proofs on a page may reference lemmas on referenced pages, and so on.

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

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

sudo dnf -y install logiweb

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

sudo yum -y install logiweb

How To Uninstall logiweb on Fedora 34

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

sudo dnf remove logiweb

logiweb Package Contents on Fedora 34

/usr/bin/lgc
/usr/bin/lgwam
/usr/lib/.build-id
/usr/lib/.build-id/d0
/usr/lib/.build-id/d0/9c7e3356ada1d91ce7e62c92c91420a67ab916
/usr/share/doc/logiweb
/usr/share/doc/logiweb/CHANGELOG
/usr/share/doc/logiweb/COPYING
/usr/share/doc/logiweb/README
/usr/share/doc/logiweb/TODO
/usr/share/doc/logiweb/examples
/usr/share/doc/logiweb/examples/Peano.lgs
/usr/share/doc/logiweb/examples/README
/usr/share/doc/logiweb/examples/base.lgs
/usr/share/doc/logiweb/examples/check.lgs
/usr/share/doc/logiweb/examples/combinations.lgs
/usr/share/doc/logiweb/examples/compile.sh
/usr/share/doc/logiweb/examples/hello.lgs
/usr/share/doc/logiweb/examples/lgc.lgs
/usr/share/doc/logiweb/examples/logiweb.eps
/usr/share/doc/logiweb/examples/logiweb.ico
/usr/share/doc/logiweb/examples/logiweb.png
/usr/share/doc/logiweb/examples/makefile
/usr/share/doc/logiweb/examples/multzero.lgs
/usr/share/doc/logiweb/examples/test.lgs
/usr/share/doc/logiweb/examples/testmachine.lgs
/usr/share/doc/logiweb/examples/version
/usr/share/man/man1/lgc.1.gz
/usr/share/man/man1/lgwam.1.gz
/usr/share/man/man5/lgc.5.gz
/usr/share/man/man5/lgc.conf.5.gz
/usr/share/man/man5/logiweb.5.gz
/usr/share/man/man7/logiweb.7.gz

References

Summary

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