How To Install malaga on Rocky Linux 8
Introduction
In this tutorial we learn how to install malaga
on Rocky Linux 8.
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 Rocky Linux 8. In this tutorial we discuss both methods but you only need to choose one of method to install malaga.
Install malaga on Rocky Linux 8 Using dnf
Update yum database with dnf
using the following command.
sudo dnf makecache --refresh
After updating yum database, We can install malaga
using dnf
by running the following command:
sudo dnf -y install malaga
Install malaga on Rocky Linux 8 Using yum
Update yum database with yum
using the following command.
sudo yum makecache --refresh
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 Rocky Linux 8
To uninstall only the malaga
package we can use the following command:
sudo dnf remove malaga
malaga Package Contents on Rocky Linux 8
/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/29
/usr/lib/.build-id/29/797ce78c7aaf8671a5f1df87e2957e67108b84
/usr/lib/.build-id/38
/usr/lib/.build-id/38/07351d54fb2c1b6e0b52472742b6829893b5c1
/usr/lib/.build-id/96
/usr/lib/.build-id/96/02d72ab87ea62a663c5e79f09d98972b443761
/usr/lib/.build-id/a3
/usr/lib/.build-id/a3/4a7f28c508f313c3889de31fbf3f2506c32979
/usr/lib/.build-id/a9
/usr/lib/.build-id/a9/e7998d022827cdcf252ff7e84aa5481af44171
/usr/lib/.build-id/d7
/usr/lib/.build-id/d7/31412d21a6928181cde3b149c2e02f54ec1a48
/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 Rocky Linux 8 using yum and dnf.