How To Install malaga on Fedora 34

malaga is A programming language for automatic language analysis

Introduction

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

What is malaga

A software package for the development and application of grammars that are used for the analysis of words and sentences of natural languages. It is a language-independent system that offers a programming language for the modelling of the language-dependent grammatical information. This language is also called Malaga. Malaga is based on the grammatical theory of the “Left Associative Grammar” (LAG), developed by Roland Hausser, professor for Computational Linguistics at University of Erlangen, Germany.

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

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

sudo dnf -y install malaga

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

sudo yum -y install malaga

How To Uninstall malaga on Fedora 34

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

sudo dnf remove malaga

malaga Package Contents on Fedora 34

/usr/bin/malaga
/usr/bin/mallex
/usr/bin/malmake
/usr/bin/malrul
/usr/bin/malshow
/usr/bin/malsym
/usr/lib/.build-id
/usr/lib/.build-id/07
/usr/lib/.build-id/07/1c593a7eb19e3013916127c9866e77f206ff9e
/usr/lib/.build-id/0b
/usr/lib/.build-id/0b/bb73795a08df1889b3ddc0c64f69d0d9b7ba0a
/usr/lib/.build-id/30
/usr/lib/.build-id/30/76883db33fb35ac5082c35151e81ac1608bb5f
/usr/lib/.build-id/4a
/usr/lib/.build-id/4a/f0db4d0d222c86a7a399abfe350cd9d5b45ef9
/usr/lib/.build-id/ab
/usr/lib/.build-id/ab/1bf66b1036d72a887bcca3dc7c22d2ce23e66e
/usr/lib/.build-id/bc
/usr/lib/.build-id/bc/3af447903ebd1b532c9fa1a45b0f9c297cc4c8
/usr/share/info/malaga.info.gz
/usr/share/malaga
/usr/share/malaga/malaga.el
/usr/share/man/man1/malaga.1.gz
/usr/share/man/man1/mallex.1.gz
/usr/share/man/man1/malmake.1.gz
/usr/share/man/man1/malrul.1.gz
/usr/share/man/man1/malshow.1.gz
/usr/share/man/man1/malsym.1.gz

References

Summary

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